<?xml version="1.0"?>
<News hasArchived="true" page="8442" pageCount="10727" pageSize="10" timestamp="Fri, 17 Jul 2026 14:27:07 -0400" url="https://my3.my.umbc.edu/posts.xml?page=8442">
<NewsItem contentIssues="true" id="33744" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33744">
<Title>Thinking Ahead &#8211; CSS Device Adaptation With @viewport</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>When we need to adjust a device’s browser viewport, the HTML <code>&lt;meta name="viewport"&gt;</code> tag is usually our go-to solution. But the viewport meta tag is surprisingly “non-normative”––it’s not a formal W3C spec, much less a web standard.</p>
    <p>The viewport meta tag was first implemented by Apple in iPhone Safari, then other browser vendors quickly adopted it. It’s widely used today because of the popularity and market share of iOS, Android, and similar platforms for tablet and smartphone devices.</p>
    <p>Since the viewport meta tag is strictly for layout, we can say that it rightfully belongs in the CSS. That’s why the W3C is attempting to standardize a new device adaptation method that moves the viewport control from the HTML to the CSS.</p>
    <h2>The @viewport CSS Rule</h2>
    <p>With the new <code>@viewport</code> rule we have the same viewport control we have with the meta tag, except that it’s done entirely with CSS. And like with the meta tag, it’s still recommended to set the viewport width using the device-agnostic <code>device-width</code>:</p>
    <pre>@viewport {&#x000A;       width: device-width;&#x000A;    }</pre>
    <p>Nowadays, <code>@viewport</code> is used by many developers because it’s necessary in IE10’s “snap mode,” a Windows 8 feature that lets users drag the browser window to the left or right of the screen in order to use two windows simultaneously. <em>Strangely</em>, IE10 ignores the viewport meta tag when the viewport is smaller than 400 pixels, so sites relying on it are never optimized for those smaller windows. To fix it, developers need to use the <code>device-width</code> example shown above, or define a <code>@viewport</code> rule inside a media query.</p>
    <h2>Using @viewport with Media Queries</h2>
    <p>We can use <code>@viewport</code> inside media queries for more precise optimization. For example, the following media query uses it to lay out any viewport narrower than 400 pixels (IE10’s snap mode, for example) to a scaled width of 320px.</p>
    <pre>@media screen and (max-width: 400px) {&#x000A;       @-ms-viewport { width: 320px; }&#x000A;       ...&#x000A;    }</pre>
    <p>In this example, if a device is in the resolution range of 640px and 1024px, the <code>@viewport</code> rule scales the viewport to 640px.</p>
    <pre>@media screen and (min-width: 640px) and (max-width: 1024px) {&#x000A;       @viewport { width: 640px; }&#x000A;       ...&#x000A;    }</pre>
    <h2>@viewport’s New Descriptors</h2>
    <p>Although we’re still able to manipulate the zoom and scaling behavior, a few viewport properties––or descriptors, as they’re now called––have changed.</p>
    <h3>zoom</h3>
    <p>The <code>zoom</code> descriptor is equivalent to the <code>initial-scale</code> viewport property in the meta tag.</p>
    <pre>@viewport {&#x000A;       width: device-width;&#x000A;       zoom: 2;&#x000A;    }</pre>
    <p>Like <code>minimum-scale</code> and <code>maximum-scale</code>, there are also descriptors for <code>max-zoom</code> and <code>min-zoom</code>:</p>
    <pre>@viewport {&#x000A;       width: device-width; &#x000A;       max-zoom: 3; &#x000A;       min-zoom: 0.50; &#x000A;    }</pre>
    <h3>user-zoom</h3>
    <p>The <code>user-zoom</code> descriptor is equivalent to the <code>user-scalable</code> viewport property.</p>
    <pre>@viewport {&#x000A;       width: device-width;&#x000A;       user-zoom: fixed;&#x000A;    }</pre>
    <h2>Browser Support</h2>
    <p>Currently, support for <code>@viewport</code> is limited to Opera and IE10. It seems like Chrome (and hopefully others) will be implementing it soon, though, as it’s expected to replace the viewport meta tag as the official web standard in the near future.</p>
    <p>For now, <code>@viewport</code> requires vendor prefixing:</p>
    <pre>@-ms-viewport {&#x000A;       width: device-width;&#x000A;    }&#x000A;    @-o-viewport { &#x000A;       width: device-width;&#x000A;    }&#x000A;    @viewport {&#x000A;       width: device-width; &#x000A;    }</pre>
    <p>Of course, we still need to include the viewport meta tag, as that isn’t going away anytime soon. But it doesn’t hurt to start thinking ahead – adding the <code>@viewport</code> rule now simply makes our sites and apps future-friendly.</p>
    <p>The post <a href="http://blog.teamtreehouse.com/thinking-ahead-css-device-adaptation-with-viewport" rel="nofollow external" class="bo">Thinking Ahead – CSS Device Adaptation With @viewport</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>When we need to adjust a device’s browser viewport, the HTML &lt;meta name="viewport"&gt; tag is usually our go-to solution. But the viewport meta tag is surprisingly “non-normative”––it’s not a...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/PxiDgvf7Qjg/thinking-ahead-css-device-adaptation-with-viewport</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33744/guest@my.umbc.edu/410cb1644cd61cea4ec072030de7f382/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>at-viewport</Tag>
<Tag>css</Tag>
<Tag>css3</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>make-a-website</Tag>
<Tag>mobile</Tag>
<Tag>mobile-devices</Tag>
<Tag>responsive</Tag>
<Tag>viewport-descriptors</Tag>
<Tag>viewport-meta-tag</Tag>
<Tag>viewports</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>Tue, 06 Aug 2013 14:30:22 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 14:30:22 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33745" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33745">
<Title>DealBook: In Loeb Rejection, Sony Cites Poor I.P.O. Record for Unit</Title>
<Body>
<![CDATA[
    <div class="html-content">In rejecting a proposal by hedge fund manager Daniel S. Loeb, Sony’s chief executive acknowledged the times when companies have regretted publicly listing part of a subsidiary.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F08%2F06%2Fpoor-record-for-subsidiary-i-p-o-s-a-factor-in-sonys-rejection-of-the-idea%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+In+Loeb+Rejection%2C+Sony+Cites+Poor+I.P.O.+Record+for+Unit" 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%2Fdealbook.nytimes.com%2F2013%2F08%2F06%2Fpoor-record-for-subsidiary-i-p-o-s-a-factor-in-sonys-rejection-of-the-idea%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+In+Loeb+Rejection%2C+Sony+Cites+Poor+I.P.O.+Record+for+Unit" 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%2Fdealbook.nytimes.com%2F2013%2F08%2F06%2Fpoor-record-for-subsidiary-i-p-o-s-a-factor-in-sonys-rejection-of-the-idea%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+In+Loeb+Rejection%2C+Sony+Cites+Poor+I.P.O.+Record+for+Unit" 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%2Fdealbook.nytimes.com%2F2013%2F08%2F06%2Fpoor-record-for-subsidiary-i-p-o-s-a-factor-in-sonys-rejection-of-the-idea%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+In+Loeb+Rejection%2C+Sony+Cites+Poor+I.P.O.+Record+for+Unit" 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%2Fdealbook.nytimes.com%2F2013%2F08%2F06%2Fpoor-record-for-subsidiary-i-p-o-s-a-factor-in-sonys-rejection-of-the-idea%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+In+Loeb+Rejection%2C+Sony+Cites+Poor+I.P.O.+Record+for+Unit" 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/172487794452/u/0/f/640387/c/34625/s/2fa2c69e/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487794452/u/0/f/640387/c/34625/s/2fa2c69e/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>In rejecting a proposal by hedge fund manager Daniel S. Loeb, Sony’s chief executive acknowledged the times when companies have regretted publicly listing part of a subsidiary.     </Summary>
<Website>http://dealbook.nytimes.com/2013/08/06/poor-record-for-subsidiary-i-p-o-s-a-factor-in-sonys-rejection-of-the-idea/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33745/guest@my.umbc.edu/2c4185518ef157a0ae4d9de624daa0a6/api/pixel</TrackingUrl>
<Tag>hedge-funds</Tag>
<Tag>hirai-kazuo</Tag>
<Tag>initial-public-offerings</Tag>
<Tag>loeb-daniel-s</Tag>
<Tag>new</Tag>
<Tag>retail-leisure</Tag>
<Tag>sony-corporation</Tag>
<Tag>technology</Tag>
<Tag>third-point-llc</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>Tue, 06 Aug 2013 14:27:25 -0400</PostedAt>
<EditAt>Wed, 07 Aug 2013 00:25:33 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33740" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33740">
<Title>Bits Blog: Drawing the Line on Altering Human Minds</Title>
<Body>
<![CDATA[
    <div class="html-content">Readers question if technologies that can hack our brains, removing our memories, take technology too far.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F06%2Fdoes-altering-the-human-mind-take-technology-too-far%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Drawing+the+Line+on+Altering+Human+Minds" 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%2F2013%2F08%2F06%2Fdoes-altering-the-human-mind-take-technology-too-far%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Drawing+the+Line+on+Altering+Human+Minds" 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%2F2013%2F08%2F06%2Fdoes-altering-the-human-mind-take-technology-too-far%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Drawing+the+Line+on+Altering+Human+Minds" 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%2F2013%2F08%2F06%2Fdoes-altering-the-human-mind-take-technology-too-far%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Drawing+the+Line+on+Altering+Human+Minds" 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%2F2013%2F08%2F06%2Fdoes-altering-the-human-mind-take-technology-too-far%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Drawing+the+Line+on+Altering+Human+Minds" 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/172487829192/u/0/f/640387/c/34625/s/2fa23c49/kg/342/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487829192/u/0/f/640387/c/34625/s/2fa23c49/kg/342/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Readers question if technologies that can hack our brains, removing our memories, take technology too far.     </Summary>
<Website>http://bits.blogs.nytimes.com/2013/08/06/does-altering-the-human-mind-take-technology-too-far/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33740/guest@my.umbc.edu/d18d1efdf83ca375ada94c2b5db5e20b/api/pixel</TrackingUrl>
<Tag>computers-and-the-internet</Tag>
<Tag>data</Tag>
<Tag>new</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>Tue, 06 Aug 2013 14:14:34 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 15:42:02 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="110069" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110069">
<Title>Warehouse-raised fish, Yonathan Zohar on the Marc Steiner Show and in the City Paper</Title>
<Body>
<![CDATA[
    <div class="html-content">Yonathan Zohar, professor in the department of marine biotechnology, was featured in the Baltimore City Paper, in Van Smith’s article,The Economy of Scale, A Baltimore lab aims to take the science of growing clean, healthy salt-water fish to the global marketplace. Zohar and Smith were subsequently invited to appear in a segment on the Marc Steiner Show.  </div>
]]>
</Body>
<Summary>Yonathan Zohar, professor in the department of marine biotechnology, was featured in the Baltimore City Paper, in Van Smith’s article,The Economy of Scale, A Baltimore lab aims to take the science...</Summary>
<Website>https://news.umbc.edu/warehouse-raised-fish-yonathan-zohar-on-the-marc-steiner-show-and-in-the-city-paper/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110069/guest@my.umbc.edu/db46d158a588000d9144be8d7802f7cf/api/pixel</TrackingUrl>
<Tag>cnms</Tag>
<Tag>science-and-technology</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Tue, 06 Aug 2013 13:40:01 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33739" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33739">
<Title>HTML5 and Canvas 2D Candidate Recommendations Updated by the HTML Working Group</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The <a href="http://www.w3.org/html/wg/" rel="nofollow external" class="bo">HTML Working Group</a> updated two Candidate Recommendations today:</p>
    <ul>
    <li>
    <a href="http://www.w3.org/TR/2013/CR-html5-20130806/" rel="nofollow external" class="bo">HTML5</a>, which defines the 5th major revision of the core language of the World Wide Web, the Hypertext Markup Language (HTML). In this version, new features are introduced to help Web application authors, new elements are introduced based on research into prevailing authoring practices, and special attention has been given to defining clear conformance criteria for user agents in an effort to improve interoperability.</li>
    <li>
    <a href="http://www.w3.org/TR/2013/CR-2dcontext-20130806/" rel="nofollow external" class="bo">HTML Canvas 2D Context</a>, which defines the 2D Context for the HTML canvas element. The 2D Context provides objects, methods, and properties to draw and manipulate graphics on a canvas drawing surface.</li>
    </ul>
    <p>Learn more about the <a href="http://www.w3.org/MarkUp/Activity" rel="nofollow external" class="bo">HTML Activity</a>.</p>
    </div>
]]>
</Body>
<Summary>The HTML Working Group updated two Candidate Recommendations today:     HTML5, which defines the 5th major revision of the core language of the World Wide Web, the Hypertext Markup Language...</Summary>
<Website>http://www.w3.org/News/2013.html#entry-9911</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33739/guest@my.umbc.edu/7cf267a0adbd83b98a42c561b9dd37f1/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>Tue, 06 Aug 2013 13:24:29 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33735" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33735">
<Title>Gadgetwise: A Waterproof Cover for the Samsung Galaxy S III</Title>
<Body>
<![CDATA[
    <div class="html-content">The LifeProof Nuud cases, previously available for Apple products only, are now available for the S III and the iPhone 5.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fa-waterproof-cover-for-the-samsung-galaxy-s-iii.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+A+Waterproof+Cover+for+the+Samsung+Galaxy+S+III" 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%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fa-waterproof-cover-for-the-samsung-galaxy-s-iii.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+A+Waterproof+Cover+for+the+Samsung+Galaxy+S+III" 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%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fa-waterproof-cover-for-the-samsung-galaxy-s-iii.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+A+Waterproof+Cover+for+the+Samsung+Galaxy+S+III" 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%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fa-waterproof-cover-for-the-samsung-galaxy-s-iii.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+A+Waterproof+Cover+for+the+Samsung+Galaxy+S+III" 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%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fa-waterproof-cover-for-the-samsung-galaxy-s-iii.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+A+Waterproof+Cover+for+the+Samsung+Galaxy+S+III" 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/172487797844/u/0/f/640387/c/34625/s/2fa1749e/kg/342/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487797844/u/0/f/640387/c/34625/s/2fa1749e/kg/342/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The LifeProof Nuud cases, previously available for Apple products only, are now available for the S III and the iPhone 5.     </Summary>
<Website>http://www.nytimes.com/2013/08/08/technology/personaltech/a-waterproof-cover-for-the-samsung-galaxy-s-iii.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33735/guest@my.umbc.edu/12f86c96fe4d52d33f1b6c73e16de25e/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>new</Tag>
<Tag>samsung-group</Tag>
<Tag>smartphones</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>Tue, 06 Aug 2013 12:38:58 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33736" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33736">
<Title>Gadgetwise: Candy-Colored Headphones From Monster</Title>
<Body>
<![CDATA[
    <div class="html-content">The latest offering in Monster’s NCredible line is the NTune Candy Collection of brightly hued, durable on-ear headphones.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fcandy-colored-headphones-from-monster.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Candy-Colored+Headphones+From+Monster" 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%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fcandy-colored-headphones-from-monster.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Candy-Colored+Headphones+From+Monster" 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%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fcandy-colored-headphones-from-monster.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Candy-Colored+Headphones+From+Monster" 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%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fcandy-colored-headphones-from-monster.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Candy-Colored+Headphones+From+Monster" 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%2F2013%2F08%2F08%2Ftechnology%2Fpersonaltech%2Fcandy-colored-headphones-from-monster.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Gadgetwise%3A+Candy-Colored+Headphones+From+Monster" 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/172487797843/u/0/f/640387/c/34625/s/2fa1749d/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487797843/u/0/f/640387/c/34625/s/2fa1749d/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The latest offering in Monster’s NCredible line is the NTune Candy Collection of brightly hued, durable on-ear headphones.     </Summary>
<Website>http://www.nytimes.com/2013/08/08/technology/personaltech/candy-colored-headphones-from-monster.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33736/guest@my.umbc.edu/f43a2ae5d9d558755edc240e27de0d1e/api/pixel</TrackingUrl>
<Tag>cannon-nick</Tag>
<Tag>headphones-and-headsets</Tag>
<Tag>monster-cable-products</Tag>
<Tag>new</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>Tue, 06 Aug 2013 12:37:45 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33734" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33734">
<Title>Crowdsourcing accurate and low cost detection of weed infestations</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="weeds" height="308" src="//www.csee.umbc.edu/wp-content/uploads/2013/08/weeds.jpg" width="700" style="max-width: 100%; height: auto;"></p>
    <p>UMBC's <a href="http://bit.ly/MPSSL" rel="nofollow external" class="bo">Mobile, Pervasive and Sensor Systems Laboratory</a> focuses on three key areas: renewable energy, healthcare applications and mobile phone systems. Their crowdsourcing-based technology for accurate and low cost detection of weed infestations was cited recently as one of the <a href="http://farmindustrynews.com/farm-equipment/10-technologies-changing-farm-machinery" rel="nofollow external" class="bo">top ten technologies changing farm machinery</a> by Farm Industry News.</p>
    <blockquote>
    <p>D. Saraswat and N. Banerjee, Crowdsourcing App for Precision Agriculture Decision Making, ASABE Annual International Meeting, Dallas TX, August 2012.</p>
    </blockquote>
    <p>The research was begun while Professor Banerjee was at the University of Arkansas, where the complex software system was  implemented by students Brenna Blackwell and Mahbub Rahman, who is continuing his PhD studies at UMBC.</p>
    <p>Like the <a href="https://www.facebook.com/pages/Mobile-Pervasive-and-Sensor-Systems-Laboratory/223218641075695" rel="nofollow external" class="bo">MPSSL Facebook page</a> to follow their work or visit the <a href="http://bit.ly/MPSSL" rel="nofollow external" class="bo">MPSSL page</a></p>
    </div>
]]>
</Body>
<Summary>UMBC's Mobile, Pervasive and Sensor Systems Laboratory focuses on three key areas: renewable energy, healthcare applications and mobile phone systems. Their crowdsourcing-based technology for...</Summary>
<Website>http://www.csee.umbc.edu/2013/08/crowdsourcing-accurate-and-low-cost-detection-of-weed-infestations/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33734/guest@my.umbc.edu/6b12faae17d43ba9001013d0c1e822c4/api/pixel</TrackingUrl>
<Tag>computer-science</Tag>
<Tag>mobile</Tag>
<Tag>news</Tag>
<Tag>research</Tag>
<Group token="csee">Computer Science and Electrical Engineering</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/csee</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/original.png?1314043393</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xlarge.png?1314043393</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/large.png?1314043393</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/medium.png?1314043393</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/small.png?1314043393</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xsmall.png?1314043393</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/099/d117dca133c64bf78a4b7696dd007189/xxsmall.png?1314043393</AvatarUrl>
<Sponsor>Computer Science and Electrical Engineering</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 06 Aug 2013 12:25:18 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 12:25:18 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33732" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33732">
<Title>Bits Blog: Tech Sector Responds to Bezos Deal for The Post</Title>
<Body>
<![CDATA[
    <div class="html-content">While some dismissed the $250 million deal as the flashy act of an Internet billionaire, others speculated about why Jeffrey Bezos, the founder of Amazon, would want a publishing company and what he would do next.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2013%2F08%2F06%2Fthe-tech-sectors-mixed-response-to-bezoss-purchase-of-the-post%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Sector+Responds+to+Bezos+Deal+for+The+Post" 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%2F2013%2F08%2F06%2Fthe-tech-sectors-mixed-response-to-bezoss-purchase-of-the-post%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Sector+Responds+to+Bezos+Deal+for+The+Post" 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%2F2013%2F08%2F06%2Fthe-tech-sectors-mixed-response-to-bezoss-purchase-of-the-post%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Sector+Responds+to+Bezos+Deal+for+The+Post" 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%2F2013%2F08%2F06%2Fthe-tech-sectors-mixed-response-to-bezoss-purchase-of-the-post%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Sector+Responds+to+Bezos+Deal+for+The+Post" 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%2F2013%2F08%2F06%2Fthe-tech-sectors-mixed-response-to-bezoss-purchase-of-the-post%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Tech+Sector+Responds+to+Bezos+Deal+for+The+Post" 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/172487758682/u/0/f/640387/c/34625/s/2fa12159/kg/342/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487758682/u/0/f/640387/c/34625/s/2fa12159/kg/342/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>While some dismissed the $250 million deal as the flashy act of an Internet billionaire, others speculated about why Jeffrey Bezos, the founder of Amazon, would want a publishing company and what...</Summary>
<Website>http://bits.blogs.nytimes.com/2013/08/06/the-tech-sectors-mixed-response-to-bezoss-purchase-of-the-post/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33732/guest@my.umbc.edu/4382d8da5f82598e8266db46d6ef323f/api/pixel</TrackingUrl>
<Tag>bezos-jeffrey-p</Tag>
<Tag>new</Tag>
<Tag>newspapers</Tag>
<Tag>technology</Tag>
<Tag>washington-post-company</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>Tue, 06 Aug 2013 11:32:40 -0400</PostedAt>
<EditAt>Tue, 06 Aug 2013 15:43:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="33728" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33728">
<Title>Emmet LiveStyle</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>You might have seen a workflow where you can save out of DevTools to file. But have you seen it changes made in DevTools instantly update the code in your editor in real time? And vice versa?</p>
    <p><a href="http://livestyle.emmet.io/" title="Direct link to featured article" rel="nofollow external" class="bo">Direct Link to Article</a> — <a href="http://css-tricks.com/emmet-livestyle/" rel="nofollow external" class="bo">Permalink</a></p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/emmet-livestyle/" rel="nofollow external" class="bo">Emmet LiveStyle</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>You might have seen a workflow where you can save out of DevTools to file. But have you seen it changes made in DevTools instantly update the code in your editor in real time? And vice versa?...</Summary>
<Website>http://livestyle.emmet.io/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33728/guest@my.umbc.edu/425b66380075d52fff1e62775ac610bd/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>link</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</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>Tue, 06 Aug 2013 10:36:10 -0400</PostedAt>
</NewsItem>

</News>
