<?xml version="1.0"?>
<News hasArchived="true" page="8858" pageCount="10713" pageSize="10" timestamp="Thu, 02 Jul 2026 14:44:22 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8858">
<NewsItem contentIssues="true" id="27538" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27538">
<Title>How to use CSS3 transitions</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/03/thumbnail25.jpg" alt="Thumbnail" width="200" height="160" style="max-width: 100%; height: auto;">Everyone loves motion. Adding the fourth dimension (time) to a site design is the main way screen-based design stands out from print design. CSS Transitions are a simple method for animating properties of an element enabling you to enrich certain events in your web design, without the need of Flash or JavaScript.</p>
    <p>The W3C aptly describes transitions on their website as “CSS Transitions allows property changes in CSS values to occur smoothly over a specified duration”. In other words, CSS transitions allow us to modify a property incrementally, creating a sensation of motion and imbuing designs with subtlety and emotion that isn’t possible with a quick change.</p>
    <h1>Browser support</h1>
    <p>All modern browsers (yes even IE!) now support CSS transitions. However, importantly, if transitions aren’t supported in the browser being used, the transition is ignored and the property changes will be applied instantly. This graceful degradation is a cornerstone of best practice.</p>
    <p>In order to extend the range of browser support we can use vendor prefixes, this extends the feature to include Firefox 4–15, Opera 10.5–12 and most versions of Chrome and Safari. The code, including the vendor prefix alternatives looks like this:</p>
    <pre>div {<br>  -o-transition: all 1s ease;<br>  -moz-transition: all 1s ease;<br>  -webkit-transition: all 1s ease;<br>  transition: all 1s ease;<br>}</pre>
    <p>The non-prefixed property is added at the bottom of the stack to ensure final implemantation will trump all the others, as the property moves from draft to finished status.</p>
    <p> </p>
    <h1>Transition parameters</h1>
    <p>There are four parameters for CSS transitions:</p>
    <ul>
    <li>
    <strong>transition-property:</strong> the property to be tweened, or the keyword ‘all’ to apply to all properties;</li>
    <li>
    <strong>transition-duration:</strong> the duration of the transition;</li>
    <li>
    <strong>transition-timing-function:</strong> the easing to be applied, this creates more natural looking movement</li>
    <li>
    <strong>transtion-delay:</strong> specifies a delay to the start of the transition.</li>
    </ul>
    <p>In addition, you can also use the shorthand property (as in the example above) where the parameters are specified as property, duration, timing function, delay.</p>
    <p> </p>
    <h1>Properties that can be transitioned</h1>
    <p>You can only transition properties that can be translated into a mathematical value. So for example, you can transition font-size; you cannot transition font-face.</p>
    <p>The full list of properties that can currently be transitioned is as follows: </p>
    <p>background-position, border-bottom-color, border-bottom-width, border-left-color, border-left-width, border-right-color, border-right-width, border-spacing, border-top-color, border-top-width, bottom, clip, color, font-size, font-weight, height, left, letter-spacing, margin-bottom, margin-left, margin-right, margin-top, max-height, max-width, min-height, min-width, opacity, outline-color, outline-width, padding-bottom, padding-left, padding-right, padding-top, right, text-indent, text-shadow, top, vertical-align, width, word-spacing, z-index.</p>
    <p> </p>
    <h1>Using transitions</h1>
    <p>Transition declarations are attached to the normal state of the element. Therefore only declared once for several states such as :focus, :active and pseudo classes.</p>
    <p>Using the following code we can set up a basic menu and a paragraph of text. It is styled so that the menu items change their color and background color when rolled over, and so that the inline link changes its underline color from white to green when hovered over:</p>
    <pre>&lt;!DOCTYPE html&gt;<br>&lt;html lang="en"&gt;<br>&lt;head&gt;<br> &lt;meta charset="utf-8" /&gt;<br> &lt;title&gt;CSS transition demo&lt;/title&gt;<br> <br> &lt;style type='text/css'&gt;<br> <br> /*<br> <br> STATIC PROPERTIES<br> <br> */<br> body {background:#fff; }<br> ul { padding:0; margin:20px; }<br> li { display:inline; padding:5px 0; }<br> .nav a { padding:5px; }<br> p { padding:0; margin:21px; }<br> a { text-decoration:none; }<br> <br> <br> /*<br> <br> PROPERTIES TO TWEEN<br> <br> */<br> <br> .nav a<br> {<br> color:#bee0bf;<br> background:#1a9e5c;<br> }<br> <br> .nav a:hover<br> {<br> color:#fff;<br> background:#38b476;<br> }<br> <br> p a<br> {<br> color:#3fa32d;<br> border-bottom:1px solid #fff;<br> }<br> <br> p a:hover<br> {<br> color:#bee0bf;<br> border-bottom:1px solid #3fa32d;<br> }<br> <br> <br> &lt;/style&gt;<br>&lt;/head&gt;<br>&lt;body&gt;<br><br>&lt;ul class='nav'&gt;<br> &lt;li&gt;&lt;a href='#'&gt;Business&lt;/a&gt;&lt;/li&gt;<br> &lt;li&gt;&lt;a href='#'&gt;Code&lt;/a&gt;&lt;/li&gt;<br> &lt;li&gt;&lt;a href='#'&gt;Design&lt;/a&gt;&lt;/li&gt;<br> &lt;li&gt;&lt;a href='#'&gt;Inspiration&lt;/a&gt;&lt;/li&gt;<br> &lt;li&gt;&lt;a href='#'&gt;Miscellaneous&lt;/a&gt;&lt;/li&gt;<br> &lt;li&gt;&lt;a href='#'&gt;Mobile&lt;/a&gt;&lt;/li&gt;<br> &lt;li&gt;&lt;a href='#'&gt;News&lt;/a&gt;&lt;/li&gt;<br> &lt;li&gt;&lt;a href='#'&gt;Resources&lt;/a&gt;&lt;/li&gt;<br> &lt;li&gt;&lt;a href='#'&gt;Usability&lt;/a&gt;&lt;/li&gt;<br>&lt;/ul&gt;<br><br>&lt;p&gt;Integer posuere erat a ante &lt;a href='#'&gt;inline link&lt;/a&gt; venenatis dapibus posuere velit aliquet. Nullam id dolor id nibh ultricies vehicula ut id elit. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Nullam quis risus eget urna mollis ornare vel eu leo.&lt;/p&gt;<br><br>&lt;/body&gt;<br>&lt;/html&gt;</pre>
    <p>Here’s how it looks:</p>
    <p></p>
    <p>We want to tween those properties, to make them run smoothly. We want to tween both the color, and the background-color of the nav elements, but for the inline text, we only want to tween the underline. We do this by adding the following to our style definition:</p>
    <pre>/*<br> <br> CSS TRANSITIONS <br> */<br> <br> .nav a<br> {<br> -o-transition: all 500ms;<br> -moz-transition: all 500ms;<br> -webkit-transition: all 500ms;<br> transition: all 500ms;<br> }<br> <br> p a<br> {<br> -o-transition: border-bottom 250ms;<br> -moz-transition: border-bottom 250ms;<br> -webkit-transition: border-bottom 250ms;<br> transition: border-bottom 250ms;<br> }</pre>
    <p>And here’s the result:</p>
    <p></p>
    <p> </p>
    <p><em><strong>Do you use CSS3 Transitions? What effects have you been able to create? Let us know in the comments.</strong></em></p>
    <p><em>Featured image/thumbnail, <a href="http://www.shutterstock.com/pic-88166515/stock-photo-the-light-trails-on-the-street-in-shanghai-china.html" rel="nofollow external" class="bo">motion image</a> via Shutterstock.</em></p>
    <p><br><br>
    </p>
    <table width="100%">
    <tbody>
    <tr>
    <td>
          <a href="http://www.mightydeals.com/deal/cartoonzee.html?ref=inwidget" rel="nofollow external" class="bo"><strong>2000+ Royalty-Free Cartoon Vectors – only $27!</strong></a>
        </td>
    <td>
          <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br>
            <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" style="max-width: 100%; height: auto;"><br>
          </a>
        </td>
    </tr>
    </tbody>
    </table>
    <p><br> </p>
    <a href="http://www.webdesignerdepot.com/2013/04/how-to-use-css3-transitions/" rel="nofollow external" class="bo">Source</a>
    </div>
]]>
</Body>
<Summary>Everyone loves motion. Adding the fourth dimension (time) to a site design is the main way screen-based design stands out from print design. CSS Transitions are a simple method for animating...</Summary>
<Website>http://www.webdesignerdepot.com/2013/04/how-to-use-css3-transitions/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27538/guest@my.umbc.edu/e283952b08cec3779f408abfe09d27d7/api/pixel</TrackingUrl>
<Tag>animation</Tag>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>css-animation</Tag>
<Tag>css-code</Tag>
<Tag>css3</Tag>
<Tag>css3-transition-examples</Tag>
<Tag>css3-transitions</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>using-css-for-animation</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, 11 Apr 2013 10:15:20 -0400</PostedAt>
<EditAt>Thu, 11 Apr 2013 10:15:20 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="27541" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27541">
<Title>Last Call: API for Media Resources 1.0</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> has published a 3rd Last Call Working Draft of <a href="http://www.w3.org/TR/2013/WD-mediaont-api-1.0-20130411/" rel="nofollow external" class="bo">API for Media Resources 1.0</a>. This specification 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. These properties are used as a pivot vocabulary in this API. The core of this specification is the definition of API interfaces for retrieving metadata information in synchronous and asynchronous. It also defines interfaces for structured return types along with the specification of the behavior of an API implementation. Comments are welcome through 03 June. Learn more about the <a href="http://www.w3.org/2008/WebVideo/" rel="nofollow external" class="bo">Video in the Web Activity</a>.</p></div>
]]>
</Body>
<Summary>The Media Annotations Working Group has published a 3rd Last Call Working Draft of API for Media Resources 1.0. This specification defines an API to access metadata information related to media...</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9786</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27541/guest@my.umbc.edu/477b7390268e1c947209d330f8825932/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>
<Tag>web-of-services</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, 11 Apr 2013 10:09:39 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="27545" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27545">
<Title>Quirky and GE Team Up to Make Inventing Easier</Title>
<Body>
<![CDATA[
    <div class="html-content">The two companies announced a new partnership that'll give citizen inventors access to a portion of GE's patent coffers, as well as a co-branded effort that could effectively appify your home.</div>
]]>
</Body>
<Summary>The two companies announced a new partnership that'll give citizen inventors access to a portion of GE's patent coffers, as well as a co-branded effort that could effectively appify your home.</Summary>
<Website>http://feedproxy.google.com/~r/YoungentrepreneurcomBlog/~3/rumle2gk81M/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27545/guest@my.umbc.edu/80c18af502539ef49457e46c99707bb6/api/pixel</TrackingUrl>
<Tag>apps</Tag>
<Tag>inventors</Tag>
<Tag>patents</Tag>
<Tag>startup-news</Tag>
<Tag>technology-news</Tag>
<Group token="entrepreneurship">Alex. Brown Center for Entrepreneurship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/entrepreneurship</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/original.jpg?1771000363</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xlarge.png?1771000363</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/large.png?1771000363</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/medium.png?1771000363</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/small.png?1771000363</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xsmall.png?1771000363</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/092/53c03b106bdc6e19e4bf0a41b5a37add/xxsmall.png?1771000363</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 11 Apr 2013 10:00:21 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="27542" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27542">
<Title>Last Call: JSON-LD 1.0, JSON-LD 1.0 Processing Algorithms and API</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The <a href="http://www.w3.org/2011/rdf-wg/wiki/Main_Page" rel="nofollow external" class="bo">RDF Working
    Group</a> and the <a href="http://json-ld.org/" rel="nofollow external" class="bo">JSON-LD Community Group</a> have published two Last Call Working Drafts today:</p>
    <ul>
    <li>
    <a href="http://www.w3.org/TR/2013/WD-json-ld-20130411/" rel="nofollow external" class="bo">JSON-LD 1.0</a>.  JSON-LD harmonizes the representation of Linked Data in JSON by describing a common JSON representation format for expressing directed graphs; mixing both Linked Data and non-Linked Data in a single document. The syntax is designed to not disturb already deployed systems running on JSON, but provide a smooth upgrade path from JSON to JSON-LD. It is primarily intended to be a way to use Linked Data in Web-based programming environments, to build interoperable Linked Data Web services, and to store Linked Data in JSON-based storage engines. JSON-LD is capable of serializing any RDF graph or dataset and most, but not all, JSON-LD documents can be directly transformed to RDF.</li>
    <li>
    <a href="http://www.w3.org/TR/2013/WD-json-ld-api-20130411/" rel="nofollow external" class="bo">JSON-LD
    1.0: Algorithms and API</a>. The JSON-LD 1.0 Algorithms and API specification describes useful Algorithms for working with JSON-LD data. It also specifies an Application Programming Interface that can be used to transform JSON-LD documents in order to make them easier to work with in programming environments like JavaScript, Python, and Ruby.</li>
    </ul>
    <p>This is a Last Call publication for both specifications. All substantive technical work on the specification is complete. Feedback on both specifications is encouraged and should be sent to <a href="mailto:public-rdf-comments@w3.org" rel="nofollow external" class="bo">public-rdf-comments@w3.org</a>. The Last Call period will end in 4 weeks, on May 10th 2013</p>
    <p>Learn more about the <a href="http://www.w3.org/2001/sw/" rel="nofollow external" class="bo">Semantic Web Activity</a> and <a href="http://www.w3.org/community/" rel="nofollow external" class="bo">W3C Community Groups</a>.</p>
    </div>
]]>
</Body>
<Summary>The RDF Working Group and the JSON-LD Community Group have published two Last Call Working Drafts today:     JSON-LD 1.0.  JSON-LD harmonizes the representation of Linked Data in JSON by...</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9785</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27542/guest@my.umbc.edu/935d9ba2e3d727dcbc0953a517e9c88f/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, 11 Apr 2013 09:56:38 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="27543" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27543">
<Title>Internationalization Tag Set (ITS) Version 2.0 Draft Published</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>The <a href="http://www.w3.org/International/multilingualweb/lt/" rel="nofollow external" class="bo">MultilingualWeb-LT Working Group</a> has published an updated working draft of <a href="http://www.w3.org/TR/2013/WD-its20-20130411/" rel="nofollow external" class="bo">Internationalization Tag Set (ITS) Version 2.0</a>. The Internationalization Tag Set (ITS) 2.0 enhances the foundation to integrate automated processing of human language into core Web technologies. ITS 2.0 provides metadata to foster the adoption of the multilingual Web. The draft reflects <a href="http://www.w3.org/TR/2013/WD-its20-20130411/#changelog-since-20121023" rel="nofollow external" class="bo">changes</a> since the <a href="http://www.w3.org/TR/2012/WD-its20-20121206/" rel="nofollow external" class="bo">last call publication 6 December 2012</a> and asks for feedback on the <a href="http://www.w3.org/TR/2013/WD-its20-20130411/#unresolved-issues" rel="nofollow external" class="bo">remaining 
    open issues</a>. Learn more about the <a href="http://www.w3.org/International/" rel="nofollow external" class="bo">Internationalization Activity</a>.</p></div>
]]>
</Body>
<Summary>The MultilingualWeb-LT Working Group has published an updated working draft of Internationalization Tag Set (ITS) Version 2.0. The Internationalization Tag Set (ITS) 2.0 enhances the foundation to...</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9784</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27543/guest@my.umbc.edu/27f83a212e04eec2e2e55028a46ad3c9/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-services</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, 11 Apr 2013 09:51:16 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="27544" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27544">
<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/2013/WD-clipboard-apis-20130411/" 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/News/2013.html#entry-9783</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27544/guest@my.umbc.edu/4a924838c8c7101469070d448ce50d3a/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, 11 Apr 2013 09:48:44 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="29308" important="false" status="posted" url="https://my3.my.umbc.edu/posts/29308">
<Title>Taming The Unicorn: Easing JavaScript Memory Profiling In Chrome DevTools</Title>
<Body>
<![CDATA[
    <div class="html-content">“The Unicorn has a special ability to help it's master when in trouble. When tamed, they will not attack humans or tamed creatures, but will attack anything else with negative karma" The DevTools Heap Profiler and Timeline Memory view can … <a href="http://addyosmani.com/blog/taming-the-unicorn-easing-javascript-memory-profiling-in-devtools/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>“The Unicorn has a special ability to help it's master when in trouble. When tamed, they will not attack humans or tamed creatures, but will attack anything else with negative karma" The DevTools...</Summary>
<Website>http://addyosmani.com/blog/taming-the-unicorn-easing-javascript-memory-profiling-in-devtools/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/29308/guest@my.umbc.edu/aae632e8a4c9f603a49d50e65464ff9e/api/pixel</TrackingUrl>
<Tag>chrome</Tag>
<Tag>chrome-profiler</Tag>
<Tag>developer</Tag>
<Tag>developer-tools</Tag>
<Tag>devtools</Tag>
<Tag>heap</Tag>
<Tag>heap-profiler</Tag>
<Tag>heap-snapshot</Tag>
<Tag>javascript</Tag>
<Tag>memory-profiling</Tag>
<Tag>modern-javascript-development</Tag>
<Tag>timeline</Tag>
<Tag>web-development</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, 11 Apr 2013 09:32:24 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="27540" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27540">
<Title>Accessible data tables</Title>
<Body>
<![CDATA[
    <div class="html-content">The days of using tables to design sites are gone. But, advises Léonie Watson, you should still put some thought into tabular data<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Ftutorials%2Faccessible-data-tables&amp;t=Accessible+data+tables" 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.netmagazine.com%2Ftutorials%2Faccessible-data-tables&amp;t=Accessible+data+tables" 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.netmagazine.com%2Ftutorials%2Faccessible-data-tables&amp;t=Accessible+data+tables" 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.netmagazine.com%2Ftutorials%2Faccessible-data-tables&amp;t=Accessible+data+tables" 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.netmagazine.com%2Ftutorials%2Faccessible-data-tables&amp;t=Accessible+data+tables" 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/163067987163/u/49/f/502346/c/32632/s/2a9ac8d7/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/163067987163/u/49/f/502346/c/32632/s/2a9ac8d7/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The days of using tables to design sites are gone. But, advises Léonie Watson, you should still put some thought into tabular data     </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/lucCNIgBtB4/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27540/guest@my.umbc.edu/2d89d8a7951615ae921e31de42b1dd20/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</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, 11 Apr 2013 08:27:35 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="27529" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27529">
<Title>Got Your Tickets Yet?</Title>
<Tagline>Ticket Counter for Thursday, April 11th, 2013</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div><div><strong>Freedom Alliance - Spring Drag Show</strong></div></div>
    <div>Saturday, April 13, 2013</div>
    <div>7:30 pm</div>
    <div>University Center, Ballroom</div>
    <div>UMBC ID = FREE</div>
    <div>General Admission = $5.00</div>
    <div><strong>We are on Ticket 106 of 400</strong></div>
    <div><strong><br></strong></div>
    <div><strong><a href="http://my.umbc.edu/groups/seb/events/16904" rel="nofollow external" class="bo">DC Zoo Bus Trip</a></strong></div>
    <div>Saturday, April 27, 2013</div>
    <div>Bus departs The Commons Circle @ 10:00 am</div>
    <div>All Guests = $5.00</div>
    <div><strong>DC Zoo Bus Trip is SOLD OUT!</strong></div>
    <div><strong><br></strong></div>
    <div><strong><a href="http://my.umbc.edu/groups/seb/events/16515" rel="nofollow external" class="bo">Iron Man 3 Midnight Premiere</a></strong></div>
    <div>Thursday, May 2, 2013</div>
    <div>Bus will begin shuttling from The Commons Circle @ 11:00 pm</div>
    <div>All Guests = $5.00</div>
    <div><strong>We are on Ticket 39 of 260</strong></div>
    <div><strong><br></strong></div>
    <div><strong><a href="http://my.umbc.edu/groups/seb/events/16519" rel="nofollow external" class="bo">Hiking Bus Trip</a></strong></div>
    <div>Sunday, May 5, 2013</div>
    <div>Bus departs The Commons Circle @ 9:00 am</div>
    <div>All Guests = $5.00</div>
    <div><strong>We are on Ticket 10 of 49</strong></div>
    <div><strong><br></strong></div>
    <div><strong><a href="http://my.umbc.edu/groups/seb/events/16482" rel="nofollow external" class="bo">Six Flags Bus Trip</a></strong></div>
    <div>Saturday, May 11, 2013</div>
    <div>Bus departs The Commons Circle @ 8:00 am</div>
    <div>All Guests = $35.00</div>
    <div><strong>We are on Ticket 20 of 53</strong></div>
    <div><strong><br></strong></div>
    <div><span><strong>The movie this week is </strong><a href="http://www.imdb.com/title/tt1321870/" rel="nofollow external" class="bo"><u>Gangster Squad</u></a><strong>, with showtimes on <a href="http://my.umbc.edu/groups/seb/events/16505" rel="nofollow external" class="bo">Thursday</a> at </strong><u><strong>10:00pm</strong></u><strong>, <a href="http://my.umbc.edu/groups/seb/events/16506" rel="nofollow external" class="bo">Friday</a> at 8:00pm and <a href="http://my.umbc.edu/groups/seb/events/16507" rel="nofollow external" class="bo">Saturday</a> at 8:00pm. Tickets are $2 and can be purchased at the CIC!</strong></span></div>
    </div>
]]>
</Body>
<Summary>Freedom Alliance - Spring Drag Show   Saturday, April 13, 2013  7:30 pm  University Center, Ballroom  UMBC ID = FREE  General Admission = $5.00  We are on Ticket 106 of 400     DC Zoo Bus Trip...</Summary>
<Website>https://www.facebook.com/UMBC.CIC</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27529/guest@my.umbc.edu/d94e5d4aae551cd214e66c11e7d2f006/api/pixel</TrackingUrl>
<Group token="cic">Campus Information Center (CIC)</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/cic</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xsmall.png?1318518699</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/original.png?1318518699</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xxlarge.png?1318518699</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xlarge.png?1318518699</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/large.png?1318518699</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/medium.png?1318518699</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/small.png?1318518699</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xsmall.png?1318518699</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xxsmall.png?1318518699</AvatarUrl>
<Sponsor>Campus Information Center (CIC)</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/027/529/2444fb11f56795030f2a634a56e19042/xxlarge.jpg?1365682427</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/027/529/2444fb11f56795030f2a634a56e19042/xlarge.jpg?1365682427</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/027/529/2444fb11f56795030f2a634a56e19042/large.jpg?1365682427</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/027/529/2444fb11f56795030f2a634a56e19042/medium.jpg?1365682427</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/027/529/2444fb11f56795030f2a634a56e19042/small.jpg?1365682427</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/027/529/2444fb11f56795030f2a634a56e19042/xsmall.jpg?1365682427</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/027/529/2444fb11f56795030f2a634a56e19042/xxsmall.jpg?1365682427</ThumbnailUrl>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 11 Apr 2013 08:14:13 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="27530" important="false" status="posted" url="https://my3.my.umbc.edu/posts/27530">
<Title>Dmitry Baranovskiy on breaking web boundaries</Title>
<Body>
<![CDATA[
    <div class="html-content">Raphaël creator Dmitry Baranovskiy explains why JavaScript libraries are like cars, and what it feels like to see your work in the White House<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Finterviews%2Fdmitry-baranovskiy-breaking-web-boundaries&amp;t=Dmitry+Baranovskiy+on+breaking+web+boundaries" 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.netmagazine.com%2Finterviews%2Fdmitry-baranovskiy-breaking-web-boundaries&amp;t=Dmitry+Baranovskiy+on+breaking+web+boundaries" 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.netmagazine.com%2Finterviews%2Fdmitry-baranovskiy-breaking-web-boundaries&amp;t=Dmitry+Baranovskiy+on+breaking+web+boundaries" 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.netmagazine.com%2Finterviews%2Fdmitry-baranovskiy-breaking-web-boundaries&amp;t=Dmitry+Baranovskiy+on+breaking+web+boundaries" 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.netmagazine.com%2Finterviews%2Fdmitry-baranovskiy-breaking-web-boundaries&amp;t=Dmitry+Baranovskiy+on+breaking+web+boundaries" 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/163067630150/u/49/f/502346/c/32632/s/2a98cbe8/kg/342/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/163067630150/u/49/f/502346/c/32632/s/2a98cbe8/kg/342/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Raphaël creator Dmitry Baranovskiy explains why JavaScript libraries are like cars, and what it feels like to see your work in the White House     </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/fruBuuvX26s/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/27530/guest@my.umbc.edu/1782e798c3c3ccbc21fe808e36ff6f58/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</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, 11 Apr 2013 07:15:32 -0400</PostedAt>
</NewsItem>

</News>
