<?xml version="1.0"?>
<News hasArchived="true" page="7713" pageCount="10777" pageSize="10" timestamp="Sun, 30 Aug 2026 21:59:58 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7713&amp;range=2">
<NewsItem contentIssues="true" id="42408" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42408">
<Title>The Beginner&#8217;s Guide to Objective-C: Classes and Objects</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>This article is part 3 of a series. Check out <a title="The Beginner’s Guide to Objective-C: Language and Variables" href="http://blog.teamtreehouse.com/the-beginners-guide-to-objective-c-language-and-variables" rel="nofollow external" class="bo">part 1</a> and <a title="The Beginner’s Guide to Objective-C: Methods" href="http://blog.teamtreehouse.com/the-beginners-guide-to-objective-c-methods" rel="nofollow external" class="bo">part 2</a>.<br>
    </em></p>
    <p>Objective-C is an “object-oriented” programming language, but what exactly does that mean? In an <a title="The Beginner’s Guide to Objective-C: Language and Variables" href="http://blog.teamtreehouse.com/the-beginners-guide-to-objective-c-language-and-variables" rel="nofollow external" class="bo">earlier post</a>, I described how “an object-oriented language is one that is built around the concept of objects.” By that I mean that the programming language is used in such a way that real-world objects can be represented in code in an intuitive manner that makes sense.</p>
    <p>As is often the case, this is best illustrated with an example. Let’s imagine that we are working on an app that let’s users order pizzas from a local restaurant. The user’s order is an example of an “object.” It has properties about it, like the user’s name, phone number, and items ordered. Each item, like a pizza, is another “object” that has its own properties, like size and toppings. The properties are represented a certain way in code and can be accessed throughout the app. This gives the code an organized structure that becomes more apparent with use and practice.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/pizza_as_object.jpg" rel="nofollow external" class="bo"><img alt="Pizza as Object" src="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/pizza_as_object.jpg" width="1024" height="347" style="max-width: 100%; height: auto;"></a><p>Anything, physical or abstract, can be as an “object” in code. (ninacoco/Flickr)</p>
    </div>
    <p>These objects can also have behaviors associated with them. With the order example, it can be submitted or canceled. Those two behaviors can be represented as “methods” in code, which you might remember from <a title="The Beginner’s Guide to Objective-C: Methods" href="http://blog.teamtreehouse.com/the-beginners-guide-to-objective-c-methods" rel="nofollow external" class="bo">another earlier post</a>.</p>
    <p>In code, this might be represented as the following, which creates a simple order for Ben, adds a pepperoni pizza, and submits the order to the store:</p>
    <pre><code>&#x000A;    Order *order = [[Order alloc] init];&#x000A;    order.name = @"Ben";&#x000A;    [order.items addObject:[Pizza initWithToppings:@"Pepperoni"]];&#x000A;    [order submit];&#x000A;    </code></pre>
    <p><strong>Why Does This Matter?</strong></p>
    <p>Programmers loathe inefficiency and have spent decades establishing conventions and patterns for software development that improve efficiency in different ways. Object-oriented principles allow for better reuse, organization, and understanding of code. It separates code into modules that can be easily reused or changed, and does so in a meaningful way that is easier for someone working with the code to understand. If you care to know more about the “why” of object-oriented programming, check out this <a title="Object-oriented programming - Wikipedia" href="http://en.wikipedia.org/wiki/Object-oriented_programming" rel="nofollow external" class="bo">very informative (and surprisingly easy-to-read) Wikipedia entry</a>.</p>
    <h1>Classes and Objects in Objective-C</h1>
    <p>In general, files of code in Objective-C are organized as <em>classes</em>. Classes are usually represented by two files: a header file and a corresponding implementation file. A class is meant to define an object and how it works. In this way, <em>a class is like a blueprint of an object</em>. Classes define things about objects as properties, and abilities of the object are defined as methods.</p>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/class_blueprint_for_object.jpg" rel="nofollow external" class="bo"><img alt="Doge class and object" src="http://blog.teamtreehouse.com/wp-content/uploads/2014/02/class_blueprint_for_object.jpg" width="957" height="340" style="max-width: 100%; height: auto;"></a><p>A class is like a blueprint for an object. (wondermonkey2k/Flickr)</p>
    </div>
    <h2><span>Header Files in Objective-C</span></h2>
    <p>The <em>header file</em> (with the file extension .h) defines the class and everything about it for the world to know. The idea is to separate the definition of a class from its nitty gritty implementation details. In this case, the header file acts as the interface to the rest of your program. Your other code will access everything about a class based on what is made available in its interface, including available properties and methods.</p>
    <p>Let’s take a look at a class that could be used to represent a simple connection to a website. This simple object has one property, a URL, and two methods: “connect” and “canHandleRequest.” The header file might look something like this:</p>
    <pre><code>&#x000A;    UrlConnection.h&#x000A;    &#x000A;    01 #import &lt;Foundation/Foundation.h&gt;&#x000A;    02&#x000A;    03 @interface UrlConnection : NSObject&#x000A;    04&#x000A;    05 @property NSString *url;&#x000A;    06&#x000A;    07 - (void)connect;&#x000A;    08 + (BOOL)canHandleRequest:(NSString *)type forUrl:(NSString *)url;&#x000A;    09&#x000A;    10 @end &#x000A;    </code></pre>
    <p>The first line is what is known as an <em>import</em> statement. This is used to import required files that the code inside this class needs. In this example we are importing the Foundation classes, which includes NSObjects like NSString, NSArray, etc. A class can have many import statements, each on its own line.</p>
    <p>(One quick thing to point out about import statements: Sometimes you will see the names of things in angle brackets, like this example, and other times you’ll see the names in double quotes, like <code>#import "PizzaViewController.h"</code>. Angle brackets tell the compiler to search for the code to import in certain system paths, whereas the double quotes tell it to search within the current project.)</p>
    <p>The next line (line 3) is the interface declaration. It begins with <code>@interface</code> and ends with <code>@end</code> on line 10. These special markers designate the beginning and end of the class interface definition. After @interface is the name, so the name of this example class is “UrlConnection.” The name here must match the name used in the .h and .m files.</p>
    <p>Up next on line 3 is a colon and another name. The colon means that the next name is the parent class of this class. Object-oriented programming languages have a concept called <em>inheritance</em> that is used to share properties and methods from one class to another. In this example, our UrlConnection class is inheriting from the NSObject class, which is Objective-C’s generic object class. NSObject defines some very basic structure about objects in Objective-C, but classes can inherit from any other class. For example, we could create another class named YouTubeUrlConnection that inherits from this UrlConnection class, and the interface declaration would look like this:</p>
    <pre><code>@interface YouTubeUrlConnection : UrlConnection</code></pre>
    <p>Let’s stop with the @interface line here, but additional information can appear on this line. For more details about it, check out <a title="Introduction to Objective-C" href="http://teamtreehouse.com/library/objectivec-basics/introduction-to-objectivec" rel="nofollow external" class="bo">Introduction to Objective-C</a> in Treehouse’s <a title="Objective-C Basics" href="http://teamtreehouse.com/library/objectivec-basics/" rel="nofollow external" class="bo">Objective-C Basics</a> course.</p>
    <h3>Properties</h3>
    <p>The next line in the class (line 5) declares a property of the class called “url.”</p>
    <pre><code>@property NSString *url;</code></pre>
    <p>Properties, remember, are data items about the object. In this case, it would be the actual URL that this object will be trying to connect to. Properties are declared with the special <code>@property</code> keyword and end with the semicolon. After @property we have a regular variable declaration that includes its data type (NSString in this case) and name (“url”).</p>
    <p>I should also point out that properties can have <em>attributes</em> that are defined inside parenthesis after the @property keyword:</p>
    <pre><code>@property (nonatomic, strong) NSString *url; // Example attributes</code></pre>
    <p>These are added to show other objects how to interact with the property and to tell the compiler how to automatically create “getter” and “setter” methods that can be used to set or retrieve the value of the property. For more details about attributes, check out <a title="Objective-C Properties" href="http://rypress.com/tutorials/objective-c/properties.html" rel="nofollow external" class="bo">this extensive tutorial</a>.</p>
    <h3>Methods</h3>
    <p>After the properties of a class, the methods (think behavior) are usually listed. <a title="The Beginner’s Guide to Objective-C: Methods" href="http://blog.teamtreehouse.com/the-beginners-guide-to-objective-c-methods" rel="nofollow external" class="bo">Methods</a> are used to organize our code into reusable (and understandable) chunks that save us a lot of time and energy.</p>
    <p>On lines 7 and 8 in our example, we have two methods listed:</p>
    <pre><code>&#x000A;    - (void)connect;&#x000A;    + (BOOL)canHandleRequest:(NSString *)type forUrl:(NSString *)url;&#x000A;    </code></pre>
    <p>Notice that these are just the names of the method. This is known as the <em>method signature</em>. It also tells us what kind of data will be returned (if any), and what parameters might be required to call it. The <code>connect</code> method does not have any parameters, nor does it return anything. The <code>canHandleRequest</code> method returns a BOOL value and has two parameters, both NSStrings.</p>
    <h4>Instance vs. Class Methods</h4>
    <p>Method declarations begin with either a minus (-) or a plus sign (+). The minus sign indicates that this method is an <em>instance</em> method. This means that an instance of the class must be available to call this method. Or, in other words, it means that in our code we need to be using an object made from this class, like if we allocated and initialized a UrlConnection object as a variable.</p>
    <p>Class methods (beginning with the plus sign), can be used simply by referencing the class. No instance of the class is needed. We can call a class method anywhere in our code as long as the header file for the class is imported. Let’s take a look at an example of using this UrlConnection class:</p>
    <pre><code>&#x000A;    01 BOOL canHandleIt = [UrlConnection canHandleRequest:@"GET"&#x000A;    02                     forUrl:@"<a href="http://www.teamtreehouse.com">http://www.teamtreehouse.com</a>"];&#x000A;    03&#x000A;    04 if (canHandleIt) {&#x000A;    05   UrlConnection *connection = [[UrlConnection alloc] init];&#x000A;    06   connection.url = @"<a href="http://www.teamtreehouse.com">http://www.teamtreehouse.com</a>";&#x000A;    07   [connection connect];&#x000A;    08 }&#x000A;    </code></pre>
    <p>On lines 1 and 2 we set a BOOL variable using the <code>canHandleRequest</code> method. (Yes, method calls can span more than one line if we want! It’s up to us.) Notice that no instance of UrlConnection has been declared yet, but we reference the method using the class name.</p>
    <p>On line 6 we have a UrlConnection variable named “connection.” We use this variable, an instance of the UrlConnection class, to call the connect method.</p>
    <p>We are not allowed to write <code>[connection canHandleRequest:@"GET"]</code>, nor can we write <code>[UrlConnection connect]</code>.</p>
    <h2>Implementation Files in Objective-C</h2>
    <p>The other half of a class is the <em>implementation file</em> (with the file extension .m). This is where the magic happens, where the rubber meets the road, and where the dirty work and the heavy lifting occurs. Implementation files implement all those things that we declare to be available in the header files. Every method that we say a class has must be defined with all its necessary code in the implementation file.</p>
    <p>Continuing with our UrlConnection example, the following is a shortened version of what the implementation file might look like:</p>
    <pre><code>&#x000A;    UrlConnection.m&#x000A;    &#x000A;    01 #import "UrlConnection.h"&#x000A;    02&#x000A;    03 @implementation UrlConnection&#x000A;    04&#x000A;    05 - (void)connect {&#x000A;    06   /* In here would be code to attempt a connection to the&#x000A;    07    * specified URL, while possibly handling connection errors.&#x000A;    08    */&#x000A;    09 }&#x000A;    10&#x000A;    11 + (BOOL)canHandleRequest:(NSString *)type &#x000A;    12                   forUrl:(NSString *)url {&#x000A;    13   /* And in here would be code to see if the given URL passed&#x000A;    14    * in is capable of handling the HTTP request type specified&#x000A;    15    * by the "type" parameter. It will return YES or NO.&#x000A;    16    */&#x000A;    17 }&#x000A;    18 &#x000A;    19 @end&#x000A;    </code></pre>
    <p>Notice that the header file must be imported (line 1). Because these are two separate files, the compiler must be told where to find the header file that belongs to this implementation file. As we saw earlier, the double quotes are used on this line to indicate that the file should be located in the same project as this implementation file.</p>
    <p>Next, on line 3, we begin the actual implementation of the class with the <code>@implementation</code> keyword. This correlates to the <code>@interface</code> keyword for the header file. And in the same manner, the implementation ends with the <code>@end</code> keyword on line 19.</p>
    <p>Primarily, we see method definitions inside the implementation. In our example, we have two methods, which are defined here. Notice that the signature for the methods is the exact same as what we saw in the header file. What’s different is that the body of the method, the code that makes it up, is also shown here as a bunch of statements inside curly braces that immediately follow the method signature. Now, we do not have any code in this example because that is not what we are focusing on here. But the comments provided give an idea as to what the Objective-C statements inside the methods will be doing.</p>
    <h2>How do I apply this knowledge?</h2>
    <p>The main thing I hope you take away from this article is an understanding of classes and objects in Objective-C so that you will know what is going on and how to use them as you write your code. Knowing how to organize and structure your objects is an art that even experienced programmers are constantly refining.</p>
    <p>As usual, if you want to learn more about anything we have covered here, or would like to practice with actual code in your browser, check out the Treehouse course <a title="Objective-C Basics" href="http://teamtreehouse.com/library/objectivec-basics" rel="nofollow external" class="bo">Objective-C Basics</a>, as well as any of the <a title="Treehouse: iOS Development" href="http://teamtreehouse.com/library/ios-development" rel="nofollow external" class="bo">iOS projects</a>. Good luck, and happy coding!</p>
    <p><em> *Shiba Inu blueprint courtesy of <a href="http://www.flickr.com/photos/wondermonkey2k/" rel="nofollow external" class="bo">wondermonkey2k</a> and pizza image courtesy of <a href="http://www.flickr.com/photos/geishabot/" rel="nofollow external" class="bo">ninacoco</a> under the Creative Commons license.</em></p>
    <p>The post <a href="http://blog.teamtreehouse.com/beginners-guide-objective-c-classes-objects" rel="nofollow external" class="bo">The Beginner’s Guide to Objective-C: Classes and Objects</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>This article is part 3 of a series. Check out part 1 and part 2.     Objective-C is an “object-oriented” programming language, but what exactly does that mean? In an earlier post, I described how...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/ubFoRwOZV_k/beginners-guide-objective-c-classes-objects</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42408/guest@my.umbc.edu/0ff6f137e2980f6e2ecba82b53b59c94/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>classes</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>iphone</Tag>
<Tag>javascript</Tag>
<Tag>learn-to-code</Tag>
<Tag>make-an-iphone-app</Tag>
<Tag>object-oriented</Tag>
<Tag>objective-c</Tag>
<Tag>objects</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 14:09:24 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42412" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42412">
<Title>Bits Blog: Mobile Security Specialist Lookout to Announce New Chief Executive</Title>
<Body>
<![CDATA[
    <div class="html-content">Lookout, the mobile security app creator, is bringing on Jim Dolce as its new chief executive, as it grows from consumer start-up to full-fledged security firm.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fas-lookout-app-and-mobile-security-problems-grow-start-up-announces-new-c-e-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Mobile+Security+Specialist+Lookout+to+Announce+New+Chief+Executive" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fas-lookout-app-and-mobile-security-problems-grow-start-up-announces-new-c-e-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Mobile+Security+Specialist+Lookout+to+Announce+New+Chief+Executive" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fas-lookout-app-and-mobile-security-problems-grow-start-up-announces-new-c-e-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Mobile+Security+Specialist+Lookout+to+Announce+New+Chief+Executive" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fas-lookout-app-and-mobile-security-problems-grow-start-up-announces-new-c-e-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Mobile+Security+Specialist+Lookout+to+Announce+New+Chief+Executive" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fas-lookout-app-and-mobile-security-problems-grow-start-up-announces-new-c-e-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Mobile+Security+Specialist+Lookout+to+Announce+New+Chief+Executive" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/191801278463/u/0/f/640387/c/34625/s/38262e38/sc/15/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801278463/u/0/f/640387/c/34625/s/38262e38/sc/15/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801278463/u/0/f/640387/c/34625/s/38262e38/sc/15/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801278463/u/0/f/640387/c/34625/s/38262e38/sc/15/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801278463/u/0/f/640387/c/34625/s/38262e38/sc/15/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801278463/u/0/f/640387/c/34625/s/38262e38/sc/15/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801278463/u/0/f/640387/c/34625/s/38262e38/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801278463/u/0/f/640387/c/34625/s/38262e38/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Lookout, the mobile security app creator, is bringing on Jim Dolce as its new chief executive, as it grows from consumer start-up to full-fledged security firm.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38262e38/sc/15/l/0Lbits0Bblogs0Bnytimes0N0C20A140C0A30C130Cas0Elookout0Eapp0Eand0Emobile0Esecurity0Eproblems0Egrow0Estart0Eup0Eannounces0Enew0Ec0Ee0Eo0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42412/guest@my.umbc.edu/6cb7ae27c2020c49d2543bdd50770546/api/pixel</TrackingUrl>
<Tag>accel-partners</Tag>
<Tag>computer-security</Tag>
<Tag>greylock-partners</Tag>
<Tag>lookout-inc</Tag>
<Tag>mithril-capital-management</Tag>
<Tag>new</Tag>
<Tag>security</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 14:00:56 -0400</PostedAt>
<EditAt>Thu, 13 Mar 2014 16:57:30 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42409" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42409">
<Title>Recommended from Around the Web (Week Ending March 14, 2014)</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>A roundup of the most interesting stories from other sites, collected by the staff at <em>MIT Technology Review</em>.</p>
    <p><a href="http://www.greencarreports.com/news/1090685_life-with-tesla-model-s-one-year-and-15000-miles-later" rel="nofollow external" class="bo">Life with Tesla Model S: One Year and 15,000 Miles Later</a><br> A Tesla owner unveils some of the annoyances of life with a Model S. But he still loves the car.<br> —<a href="http://www.technologyreview.com/contributor/kevin-bullis/" rel="nofollow external" class="bo">Kevin Bullis</a>, senior editor, energy</p>
    </div>
]]>
</Body>
<Summary>A roundup of the most interesting stories from other sites, collected by the staff at MIT Technology Review.  Life with Tesla Model S: One Year and 15,000 Miles Later  A Tesla owner unveils some...</Summary>
<Website>http://www.technologyreview.com/view/525436/recommended-from-around-the-web-week-ending-march-14-2014/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42409/guest@my.umbc.edu/97c3e5e554eb97dcf952ba91f5439db5/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 14:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42406" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42406">
<Title>Worship Night in the InterFaith Center at 7:30pm</Title>
<Body>
<![CDATA[
    <div class="html-content">Hello everyone! Tonight we are partnering with other Christian orgs to have a Worship Night in the InterFaith Center at 7:30pm (between Susquehanna and Chesapeake dorm)! All are welcome to this event, and I hope everyone is staying safe and … <a href="http://umbciv.wordpress.com/2014/03/13/worship-night-in-the-interfaith-center-at-730pm/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>Hello everyone! Tonight we are partnering with other Christian orgs to have a Worship Night in the InterFaith Center at 7:30pm (between Susquehanna and Chesapeake dorm)! All are welcome to this...</Summary>
<Website>http://umbciv.wordpress.com/2014/03/13/worship-night-in-the-interfaith-center-at-730pm/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42406/guest@my.umbc.edu/df0553917c56d7618664f5be9b062be4/api/pixel</TrackingUrl>
<Tag>posts</Tag>
<Group token="iv">Intervarsity Christian Fellowship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/iv</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xsmall.png?1567536344</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/original.png?1567536344</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xxlarge.png?1567536344</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xlarge.png?1567536344</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/large.png?1567536344</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/medium.png?1567536344</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/small.png?1567536344</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xsmall.png?1567536344</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xxsmall.png?1567536344</AvatarUrl>
<Sponsor>InterVarsity Christian Fellowship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 13:49:25 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42404" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42404">
<Title>Metadata API for Media Resources 1.0 is a W3C Recommendation</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/2008/WebVideo/Annotations/" rel="nofollow external" class="bo">Media Annotations Working Group</a> published a Recommendation of <a href="http://www.w3.org/TR/2014/REC-mediaont-api-1.0-20140313/" rel="nofollow external" class="bo">Metadata API for Media Resources 1.0</a>. This document defines an API to access metadata information related to media resources on the Web. The overall purpose is to provide developers with a convenient access to metadata information stored in different metadata formats. The API provides means to access the set of metadata properties defined in the Ontology for Media Resources 1.0 specification. Learn more about the <a href="http://www.w3.org/2008/WebVideo/" rel="nofollow external" class="bo">Video on the Web Activity</a>.</p></div>
]]>
</Body>
<Summary>The Media Annotations Working Group published a Recommendation of Metadata API for Media Resources 1.0. This document defines an API to access metadata information related to media resources on...</Summary>
<Website>http://www.w3.org/blog/news/archives/3726</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42404/guest@my.umbc.edu/21bb68c8c41389ffbb5c9b09c4fc326d/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Tag>web-design-and-applications</Tag>
<Tag>web-of-devices</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 13:23:53 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42413" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42413">
<Title>Bits: An App to Ditch the Dubious Concert Bootleg</Title>
<Body>
<![CDATA[
    <div class="html-content">A Seattle start-up called Lively hopes its service to easily recording and distributing live shows will become as essential to a touring band’s toolkit as their instruments.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fan-app-to-ditch-the-dubious-concert-bootleg%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+An+App+to+Ditch+the+Dubious+Concert+Bootleg" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fan-app-to-ditch-the-dubious-concert-bootleg%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+An+App+to+Ditch+the+Dubious+Concert+Bootleg" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fan-app-to-ditch-the-dubious-concert-bootleg%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+An+App+to+Ditch+the+Dubious+Concert+Bootleg" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fan-app-to-ditch-the-dubious-concert-bootleg%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+An+App+to+Ditch+the+Dubious+Concert+Bootleg" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F03%2F13%2Fan-app-to-ditch-the-dubious-concert-bootleg%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits%3A+An+App+to+Ditch+the+Dubious+Concert+Bootleg" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/191801165756/u/0/f/640387/c/34625/s/38262e3c/sc/38/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801165756/u/0/f/640387/c/34625/s/38262e3c/sc/38/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801165756/u/0/f/640387/c/34625/s/38262e3c/sc/38/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801165756/u/0/f/640387/c/34625/s/38262e3c/sc/38/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801165756/u/0/f/640387/c/34625/s/38262e3c/sc/38/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801165756/u/0/f/640387/c/34625/s/38262e3c/sc/38/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801165756/u/0/f/640387/c/34625/s/38262e3c/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801165756/u/0/f/640387/c/34625/s/38262e3c/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A Seattle start-up called Lively hopes its service to easily recording and distributing live shows will become as essential to a touring band’s toolkit as their instruments.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38262e3c/sc/38/l/0Lbits0Bblogs0Bnytimes0N0C20A140C0A30C130Can0Eapp0Eto0Editch0Ethe0Edubious0Econcert0Ebootleg0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42413/guest@my.umbc.edu/56598737abbc3962c5a7c90843cea9d4/api/pixel</TrackingUrl>
<Tag>lively-app</Tag>
<Tag>mobile-applications</Tag>
<Tag>music</Tag>
<Tag>new</Tag>
<Tag>south-by-southwest-music-and-media-conference</Tag>
<Tag>start-ups</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 13:23:06 -0400</PostedAt>
<EditAt>Thu, 13 Mar 2014 17:24:34 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42405" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42405">
<Title>Complaints as Amazon Raises Cost of Prime</Title>
<Body>
<![CDATA[
    <div class="html-content">The annual fee for Amazon Prime, the two-day shipping service, will jump 25 percent, to $99.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F14%2Ftechnology%2Famazon-is-raising-prime-membership-fee.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Complaints+as+Amazon+Raises+Cost+of+Prime" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F14%2Ftechnology%2Famazon-is-raising-prime-membership-fee.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Complaints+as+Amazon+Raises+Cost+of+Prime" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F14%2Ftechnology%2Famazon-is-raising-prime-membership-fee.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Complaints+as+Amazon+Raises+Cost+of+Prime" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F14%2Ftechnology%2Famazon-is-raising-prime-membership-fee.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Complaints+as+Amazon+Raises+Cost+of+Prime" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F03%2F14%2Ftechnology%2Famazon-is-raising-prime-membership-fee.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Complaints+as+Amazon+Raises+Cost+of+Prime" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    <br><br><a href="http://da.feedsportal.com/r/191801272940/u/0/f/640387/c/34625/s/382591f2/sc/24/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801272940/u/0/f/640387/c/34625/s/382591f2/sc/24/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801272940/u/0/f/640387/c/34625/s/382591f2/sc/24/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801272940/u/0/f/640387/c/34625/s/382591f2/sc/24/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801272940/u/0/f/640387/c/34625/s/382591f2/sc/24/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801272940/u/0/f/640387/c/34625/s/382591f2/sc/24/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801272940/u/0/f/640387/c/34625/s/382591f2/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801272940/u/0/f/640387/c/34625/s/382591f2/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The annual fee for Amazon Prime, the two-day shipping service, will jump 25 percent, to $99.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/382591f2/sc/24/l/0L0Snytimes0N0C20A140C0A30C140Ctechnology0Camazon0Eis0Eraising0Eprime0Emembership0Efee0Bhtml0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42405/guest@my.umbc.edu/12bccc0ab80795404c856c67b0e8ebb8/api/pixel</TrackingUrl>
<Tag>amazon-com-inc-amzn-nasdaq</Tag>
<Tag>e-commerce</Tag>
<Tag>new</Tag>
<Tag>prices-fares-fees-and-rates</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 13:18:05 -0400</PostedAt>
<EditAt>Thu, 13 Mar 2014 20:43:32 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42402" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42402">
<Title>W3C Invites Implementations of State Chart XML (SCXML): State Machine Notation for Control Abstraction</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/Voice/" rel="nofollow external" class="bo">Voice Browser Working Group</a> invites implementation of the Candidate Recommendation of <a href="http://www.w3.org/TR/2014/CR-scxml-20140313/" rel="nofollow external" class="bo">State Chart XML (SCXML): State Machine Notation for Control Abstraction</a>. This document describes SCXML, or the “State Chart extensible Markup Language”. SCXML provides a generic state-machine based execution environment based on CCXML and Harel State Tables. Learn more about the <a href="http://www.w3.org/Voice/" rel="nofollow external" class="bo">Voice Browser Activity</a>.</p></div>
]]>
</Body>
<Summary>The Voice Browser Working Group invites implementation of the Candidate Recommendation of State Chart XML (SCXML): State Machine Notation for Control Abstraction. This document describes SCXML, or...</Summary>
<Website>http://www.w3.org/blog/news/archives/3724</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42402/guest@my.umbc.edu/4579de8bf3fb6695ecde6d0058126501/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Tag>web-design-and-applications</Tag>
<Tag>web-of-devices</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 13:11:34 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42403" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42403">
<Title>Clipboard API and events Draft Published</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/2008/webapps/" rel="nofollow external" class="bo">Web Applications Working Group</a> has published a Working Draft of <a href="http://www.w3.org/TR/2014/WD-clipboard-apis-20140313/" rel="nofollow external" class="bo">Clipboard API and events</a>. This document describes APIs for clipboard operations such as copy, cut and paste in web applications. Learn more about the <a href="http://www.w3.org/2006/rwc/" rel="nofollow external" class="bo">Rich Web Client Activity</a>.</p></div>
]]>
</Body>
<Summary>The Web Applications Working Group has published a Working Draft of Clipboard API and events. This document describes APIs for clipboard operations such as copy, cut and paste in web applications....</Summary>
<Website>http://www.w3.org/blog/news/archives/3722</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42403/guest@my.umbc.edu/1afd974e6ab86206f1e4d15aa02d03c6/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Tag>web-design-and-applications</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 13:00:48 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="42400" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42400">
<Title>Linked Data Platform Use Cases and Requirements Note Published</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/2012/ldp/" rel="nofollow external" class="bo">Linked Data Platform (LDP) Working Group</a> has published a Group Note of <a href="http://www.w3.org/TR/2014/NOTE-ldp-ucr-20140313/" rel="nofollow external" class="bo">Linked Data Platform Use Cases and Requirements</a>. To foster the development of the Linked Data Platform specification, this document includes a set of user stories, use cases, scenarios and requirements that motivate a simple read-write Linked Data architecture, based on HTTP access to web resources that describe their state using RDF. The aim throughout has been to avoid details of protocol (specifically the HTTP protocol), and use of any specific vocabulary that might be introduced by the LDP specification. Learn more about the <a href="http://www.w3.org/2013/data/" rel="nofollow external" class="bo">Data Activity</a>.</p></div>
]]>
</Body>
<Summary>The Linked Data Platform (LDP) Working Group has published a Group Note of Linked Data Platform Use Cases and Requirements. To foster the development of the Linked Data Platform specification,...</Summary>
<Website>http://www.w3.org/blog/news/archives/3720</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42400/guest@my.umbc.edu/b59ebe98ce7594d5e9108a7c5808220c/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>home-page-stories</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>publication</Tag>
<Tag>semantic-web</Tag>
<Tag>sql</Tag>
<Tag>w3</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Mar 2014 12:42:07 -0400</PostedAt>
</NewsItem>

</News>
