<?xml version="1.0"?>
<News hasArchived="true" page="8251" pageCount="10837" pageSize="10" timestamp="Thu, 24 Sep 2026 00:11:56 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8251&amp;range=2">
<NewsItem contentIssues="true" id="37380" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37380">
<Title>How to optimize single page sites for search engines</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/10/thumbnail32.jpg" width="200" height="160" style="max-width: 100%; height: auto;">When Google and other search engines index websites, they don’t execute JavaScript. This seems to put single page sites — many of which rely on JavaScript — at a tremendous disadvantage compared to a traditional website.</p> <p>Not being on Google, could easily mean the death of a business, and this daunting pitfall could tempt the uninformed to abandon single page sites altogether.</p> <p>However, single page sites actually have an advantage over traditional websites in search engine optimization (SEO) because Google and others have recognized the challenge. They have created a mechanism for single page sites to not only have their dynamic pages indexed, but also optimize their pages specifically for crawlers.</p> <p>In this article we’ll focus on Google, but other large search engines such as Yahoo! and Bing support the same mechanism.</p> <p> </p> <h1>How Google crawls a single page site</h1> <p>When Google indexes a traditional website, its web crawler (called a Googlebot) first scans and indexes the content of the top-level URI (for example, <a href="http://www.myhome.com">www.myhome.com</a>). Once this is complete, it then it follows all of the links on that page and indexes those pages as well. It then follows the links on the subsequent pages, and so on. Eventually it indexes all the content on the site and associated domains.</p> <p>When the Googlebot tries to index a single page site, all it sees in the HTML is a single empty container (usually an empty div or body tag), so there’s nothing to index and no links to crawl, and it indexes the site accordingly (in the round circular “folder” on the floor next to its desk).</p> <p>If that were the end of the story, it would be the end of single page sites for many web applications and sites. Fortunately, Google and other search engines have recognized the importance of single page sites and provided tools to allow developers to provide search information to the crawler that can be better than traditional websites.</p> <p> </p> <h1>How to make a single page site crawlable</h1> <p>The first key to making our single page site crawlable is to realize that our server can tell if a request is being made by a crawler or by a person using a web browser and respond accordingly. When our visitor is a person using a web browser, respond as normal, but for a crawler, return a page optimized to show the crawler exactly what we want to, in a format the crawler can easily read.</p> <p>For the home page of our site, what does a crawler-optimized page look like? It’s probably our logo or other primary image we’d like appearing in search results, some SEO optimized text explaining what the site is or does, and a list of HTML links to only those pages we want Google to index. What the page doesn’t have is any CSS styling or complex HTML structure applied to it. Nor does it have any JavaScript, or links to areas of the site we don’t want Google to index (like legal disclaimer pages or other pages we don’t want people to enter through a Google search). The image below shows how a page might be presented to a browser (on the left) and to the crawler (on the right).</p> <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/10/optimize_001.jpg" width="650" alt="How to optimize single page sites for search engines" style="max-width: 100%; height: auto;"></p> <p> </p> <h1>Customizing content for crawlers</h1> <p>Typically, single page sites link to different content using a hash bang (#!). These links aren’t followed the same way by people and crawlers.</p> <p>For instance, if in our single page site a link to the user page looks like <em>/index.htm#!page=user:id,123</em>, the crawler would see the #! and know to look for a web page with the URI <em>/index.htm?_escaped_fragment_=page=user:id,123</em>. Knowing that the crawler will follow the pattern and look for this URI, we can program the server to respond to that request with an HTML snapshot of the page that would normally be rendered by JavaScript in the browser.</p> <p>That snapshot will be indexed by Google, but anyone clicking on our listing in Google search results will be taken to <em>/index.htm#!page=user:id,123</em>. The single page site JavaScript will take over from there and render the page as expected.</p> <p>This provides single page site developers with the opportunity to tailor their site specifically for Google and specifically for users. Instead of having to write text that’s both legible and attractive to a person and understandable by a crawler, pages can be optimized for each without worrying about the other. The crawler’s path through our site can be controlled, allowing us to direct people from Google search results to a specific set of entrance pages. This will require more work on the part of the engineer to develop, but it can have big pay-offs in terms of search result position and customer retention.</p> <p> </p> <h1>Detecting Google’s web crawler</h1> <p>At the time of this writing, the Googlebot announces itself as a crawler to the server by making requests with a user-agent string of <em>Googlebot/2.1 (<a href="+http://www.googlebot.com/bot.html">+http://www.googlebot.com/bot.html</a>)</em>. A Node.js application can check for this user agent string in the middleware and send back the crawler-optimized home page if the user agent string matches. Otherwise, we can handle the request normally.</p> <p>This arrangment seems like it would be complicated to test, since we don’t own a Googlebot. However Google offers a service to do this for publicly available production websites <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&amp;answer=158587" rel="nofollow external" class="bo">as part of its Webmaster Tools,</a> but an easier way to test is to spoof our user-agent string. This used to require some command-line hackery, but Chrome Developer Tools makes this as easy as clicking a button and checking a box:</p> <ol> <li> <p>Open the Chrome Developer Tools by clicking the button with three horizontal lines to the right of the Google Toolbar, and then selecting <em>Tools</em> from the menu and clicking on <em>Developer Tools.</em></p> </li> <li> <p>In the lower-right corner of the screen is a gears icon: click on that and see some advanced developer options such as disabling cache and turning on logging of XmlHttpRequests.</p> </li> <li> <p>In the second tab, labelled <em>Overrides,</em> click the check box next to the <em>User Agent</em> label and select any number of user agents from the drop-down from Chrome, to Firefox, to IE, iPads, and more. The Googlebot agent isn’t a default option. In order to use it, select <em>Other</em> and copy and paste the user-agent string into the provided input.</p> </li> <li> <p>Now that tab is spoofing itself as a Googlebot, and when we open any URI on our site, we should see the crawler page.</p> </li> </ol> <p> </p> <h1>In Conclusion</h1> <p>Obviously, different applications will have different needs with regard to what to do with web crawlers, but always having one page returned to the Googlebot is probably not enough. We’ll also need to decide what pages we want to expose and provide ways for our application to map the <em>_escaped_fragment_=key=value</em> URI to the content we want to show them.</p> <p>You may want to get fancy and tie the server response in to the front-end framework, but I usually take the simpler approach here and create custom pages for the crawler and put them in a separate router file for crawlers.</p> <p>There are also a lot more legitimate crawlers out there, so once we’ve adjusted our server for the Google crawler we can expand to include them as well.</p> <p> </p> <p><em><strong>Do you build single page sites? How do single page sites perform on search engines? Let us know your thoughts in the comments.</strong></em></p> <p><em>Featured image/thumbnail, <a href="http://www.shutterstock.com/pic-98054015/stock-photo-beautiful-woman-looking-through-a-magnifying-glass.html" rel="nofollow external" class="bo">search image</a> via Shutterstock.</em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/verb-complete-family.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Verb: 72-Font Super Family (the complete series) – only $37!</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" alt="How to optimize single page sites for search engines" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/10/how-to-optimize-single-page-sites-for-search-engines/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2013%2F10%2Fhow-to-optimize-single-page-sites-for-search-engines%2F&amp;t=How+to+optimize+single+page+sites+for+search+engines" 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.webdesignerdepot.com%2F2013%2F10%2Fhow-to-optimize-single-page-sites-for-search-engines%2F&amp;t=How+to+optimize+single+page+sites+for+search+engines" 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.webdesignerdepot.com%2F2013%2F10%2Fhow-to-optimize-single-page-sites-for-search-engines%2F&amp;t=How+to+optimize+single+page+sites+for+search+engines" 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.webdesignerdepot.com%2F2013%2F10%2Fhow-to-optimize-single-page-sites-for-search-engines%2F&amp;t=How+to+optimize+single+page+sites+for+search+engines" 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.webdesignerdepot.com%2F2013%2F10%2Fhow-to-optimize-single-page-sites-for-search-engines%2F&amp;t=How+to+optimize+single+page+sites+for+search+engines" 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/176966696076/u/49/f/661066/c/35285/s/32cccbd6/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176966696076/u/49/f/661066/c/35285/s/32cccbd6/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>When Google and other search engines index websites, they don’t execute JavaScript. This seems to put single page sites — many of which rely on JavaScript — at a tremendous disadvantage compared...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/32cccbd6/sc/4/l/0L0Swebdesignerdepot0N0C20A130C10A0Chow0Eto0Eoptimize0Esingle0Epage0Esites0Efor0Esearch0Eengines0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37380/guest@my.umbc.edu/b76e36ac57ec104075f85acf04ddeab3/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>how-google-crawls-a-single-page-site</Tag>
<Tag>how-to</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>search-engines-and-single-pages</Tag>
<Tag>seo-best-practices</Tag>
<Tag>single-page-applications</Tag>
<Tag>single-page-seo</Tag>
<Tag>sql</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>Wed, 23 Oct 2013 04:15:56 -0400</PostedAt>
<EditAt>Wed, 23 Oct 2013 04:15:56 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="37398" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37398">
<Title>Perkins Selected as CCSA Male Diver of the Week</Title>
<Body>
<![CDATA[
    <div class="html-content">CHARLOTTE, N.C. � UMBC senior Tim Perkins has been selected as the Coastal Collegiate Swimming Association (CCSA) Male Diver of the Week, the conference office announced on Wednesday afternoon.</div>
]]>
</Body>
<Summary>CHARLOTTE, N.C. � UMBC senior Tim Perkins has been selected as the Coastal Collegiate Swimming Association (CCSA) Male Diver of the Week, the conference office announced on Wednesday afternoon.</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=8253</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37398/guest@my.umbc.edu/ba35b3815b00561fb281bd4b62e7a009/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 23 Oct 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="37399" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37399">
<Title>Women's Soccer Takes on First Place Hartford Thursday; Quaranta Nominee For AEC Fans' Choice Player of the Year</Title>
<Body>
<![CDATA[
    <div class="html-content">With one week to go in the regular season and an America East Championship spot clinched, the UMBC women's soccer team looks to better position itself as it welcomes first-place Hartford to Retriever Soccer Park on Thursday, Oct. 24. Game time is set for 7 p.m. with the first 250 fans in attendance receiving free popcorn. Thursday also marks women's soccer's annual Pink Game, with pink t-shirts on sale for $10 prior to the game.</div>
]]>
</Body>
<Summary>With one week to go in the regular season and an America East Championship spot clinched, the UMBC women's soccer team looks to better position itself as it welcomes first-place Hartford to...</Summary>
<Website>http://www.umbcretrievers.com/release.asp?RELEASE_ID=8254</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37399/guest@my.umbc.edu/f494f6999ae3757992bc0e993de35d02/api/pixel</TrackingUrl>
<Group token="athletics">UMBC Athletics</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/athletics</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/original.jpg?1709304849</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xlarge.png?1709304849</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/large.png?1709304849</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/medium.png?1709304849</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/small.png?1709304849</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xsmall.png?1709304849</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/009/69595c9b99f609d75fbb8232d9bd73d3/xxsmall.png?1709304849</AvatarUrl>
<Sponsor>UMBC Athletics</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 23 Oct 2013 01:00:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="37379" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37379">
<Title>Banksy: Vandalism or Art?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2013/10/banksy-loves-ny.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2013/10/banksy-loves-ny-1024x768.jpg" width="614" height="461" style="max-width: 100%; height: auto;"></a></p>
    <p>Intriguing, controversial, subversive…</p>
    <p>He is arguably one of the most influential and popular artists of the 21<sup>st</sup> century.</p>
    <p>But who is <a href="http://www.smithsonianmag.com/arts-culture/The-Story-Behind-Banksy-187953941.html?c=y&amp;page=1" rel="nofollow external" class="bo">Banksy</a>?</p>
    <p>He emerged in Britain in the 1990s as a largely unknown graffiti artist. He now commands massive media attention:  his works selling for hundreds of thousands of dollars each. But remarkably his personal identity has remained unknown.</p>
    <p>Working predominately with stencils and spray cans and the occasional installation piece, Banksy engages in satire and criticism of the government, war, and capitalism.</p>
    <p>This month, Banksy announced a one month residency in NYC in which he titles <a href="http://www.banksyny.com/" rel="nofollow external" class="bo">“Better Out Than In.”</a> </p>
    <p>He has created installation pieces such as <a href="http://www.banksyny.com/2013/10/16/all-city-%E2%80%93-mcdonalds" rel="nofollow external" class="bo">“Shoe Shine”</a> in which a servant polishes the over-sized shoe of a replica Ronald McDonald. This piece has been debuting in front of McDonalds throughout NYC, serving as a critique of the labor required to maintain the image of massive corporations. </p>
    <p>He has also created works directly on public property that have gained significantly more attention and controversy, such as his <a href="http://www.banksyny.com/2013/10/01/the-street-is-in-play" rel="nofollow external" class="bo">first work</a> (pictured). Banksy clearly believes that graffiti is a form of artistic expression, but how do others feel?</p>
    <p>Mayor Bloomberg released a statement saying, </p>
    <blockquote>
    <p>“graffiti does ruin people’s property and it’s a sign of decay and loss of control.”</p>
    </blockquote>
    <p>The NYPD has been on a hunt for Banksy ever since.</p>
    <p>What do you think? Is Banksy an Artist? or Vandal?</p>
    <p>Is it true.., <em>Better Out Than In</em>?</p>
    <p> </p>
    <p> </p>
    </div>
]]>
</Body>
<Summary>Intriguing, controversial, subversive…   He is arguably one of the most influential and popular artists of the 21st century.   But who is Banksy?   He emerged in Britain in the 1990s as a largely...</Summary>
<Website>http://usdemocrazy.net/banksy-vandalism-or-art/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37379/guest@my.umbc.edu/6d615a690b008afd048fd93547a45c81/api/pixel</TrackingUrl>
<Tag>banksy</Tag>
<Tag>current</Tag>
<Tag>democracy</Tag>
<Tag>graffiti</Tag>
<Tag>mayor-bloomberg</Tag>
<Tag>modern-art</Tag>
<Tag>new-york</Tag>
<Tag>news</Tag>
<Tag>politics</Tag>
<Tag>social-criticism</Tag>
<Tag>us</Tag>
<Tag>usdemocrazy</Tag>
<Tag>vandalism</Tag>
<Group token="retired-12">USDemocrazy</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-12</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/original.jpg?1279120129</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/large.png?1279120129</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/medium.png?1279120129</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/small.png?1279120129</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxsmall.png?1279120129</AvatarUrl>
<Sponsor>USDemocrazy</Sponsor>
<PawCount>31</PawCount>
<CommentCount>19</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 22 Oct 2013 23:50:32 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="37377" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37377">
<Title>Hucks Off The Hilltop Roster</Title>
<Body>
<![CDATA[
    <div class="html-content">Hi,<div><br></div>
    <div>Below is the list of people attending Hucks Off The Hilltop in Virginia this weekend (October 26th/27th). Please contact me if you have any questions or want to talk about why you are not on the roster.</div>
    <div><br></div>
    <div>Will Albert</div>
    <div>Clarkson</div>
    <div>Gosling</div>
    <div>Dan Dresser</div>
    <div>BJ</div>
    <div>Brad Scott</div>
    <div>Chris McSherry</div>
    <div>Colby Agar</div>
    <div>Johnny Freshman</div>
    <div>Turtle</div>
    <div>Dale</div>
    <div>Ronnie</div>
    <div>Austin</div>
    <div>Brady</div>
    <div>Zach Hall</div>
    <div>Bob Ross</div>
    <div>Fabian</div>
    <div>Cody Grove</div>
    <div>Roomba (Sunday Only)</div>
    <div>Tyler Stocksdale</div>
    <div>Jerry</div>
    <div>Jason Pon</div>
    <div>Ben Price</div>
    <div>Black Tyler Coleman</div>
    <div>Thomas</div>
    <div><br></div>
    <div>We are taking 25 people. That's a very large number of people for an ultimate tournament. That means you're going to be running your little butts off each and every point you're on. Please let me know if you are not physically or emotionally 100% for this weekend.</div>
    <div><br></div>
    <div>For drivers, I have Roomba (Sunday only), Clarkson, Austin, Jason, and Fabian. I need people to let me know lickety split if they are able to drive. Contact me personally via cell phone.</div>
    <div><br></div>
    <div>I'll be sending out another email with details pertaining to when we're leaving, where we're sleeping, and which strippers we'll be bringing along later this week. Thanks for your time.</div>
    <div><br></div>
    <div>-Clarkson</div>
    <div><br></div>
    <div>Contact Information:</div>
    <div>Email - <a href="mailto:booya.ultimate@gmail.com">booya.ultimate@gmail.com</a>
    </div>
    <div>Personal Cell - 410-300-7306</div>
    </div>
]]>
</Body>
<Summary>Hi,    Below is the list of people attending Hucks Off The Hilltop in Virginia this weekend (October 26th/27th). Please contact me if you have any questions or want to talk about why you are not...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37377/guest@my.umbc.edu/36cd9123711819820e8a7b321fc520e9/api/pixel</TrackingUrl>
<Group token="retired-70">UMBC Men's Ultimate</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-70</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/xsmall.png?1283625337</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/original.png?1283625337</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/xxlarge.png?1283625337</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/xlarge.png?1283625337</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/large.png?1283625337</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/medium.png?1283625337</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/small.png?1283625337</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/xsmall.png?1283625337</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/070/032dd17b77fab7d51a476c5ff2b5659c/xxsmall.png?1283625337</AvatarUrl>
<Sponsor>Booya Men's Ultimate</Sponsor>
<PawCount>0</PawCount>
<CommentCount>1</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Tue, 22 Oct 2013 23:28:32 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="37373" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37373">
<Title>DealBook: Twitter Sheds a Light on Fast Growth of Its Newest Acquisition</Title>
<Body>
<![CDATA[
    <div class="html-content">In an amended prospectus, Twitter disclosed that MoPub, an ad company it recently acquired, had soaring revenue. It also disclosed the pay package for its chief executive, Dick Costolo.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F10%2F22%2Ftwitter-sheds-a-light-on-fast-growth-of-its-newest-acquisition%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Twitter+Sheds+a+Light+on+Fast+Growth+of+Its+Newest+Acquisition" 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%2F10%2F22%2Ftwitter-sheds-a-light-on-fast-growth-of-its-newest-acquisition%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Twitter+Sheds+a+Light+on+Fast+Growth+of+Its+Newest+Acquisition" 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%2F10%2F22%2Ftwitter-sheds-a-light-on-fast-growth-of-its-newest-acquisition%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Twitter+Sheds+a+Light+on+Fast+Growth+of+Its+Newest+Acquisition" 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%2F10%2F22%2Ftwitter-sheds-a-light-on-fast-growth-of-its-newest-acquisition%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Twitter+Sheds+a+Light+on+Fast+Growth+of+Its+Newest+Acquisition" 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%2F10%2F22%2Ftwitter-sheds-a-light-on-fast-growth-of-its-newest-acquisition%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Twitter+Sheds+a+Light+on+Fast+Growth+of+Its+Newest+Acquisition" 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/176968806388/u/0/f/640387/c/34625/s/32c90bdf/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968806388/u/0/f/640387/c/34625/s/32c90bdf/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968806388/u/0/f/640387/c/34625/s/32c90bdf/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968806388/u/0/f/640387/c/34625/s/32c90bdf/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/176968806388/u/0/f/640387/c/34625/s/32c90bdf/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968806388/u/0/f/640387/c/34625/s/32c90bdf/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/176968806388/u/0/f/640387/c/34625/s/32c90bdf/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/176968806388/u/0/f/640387/c/34625/s/32c90bdf/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>In an amended prospectus, Twitter disclosed that MoPub, an ad company it recently acquired, had soaring revenue. It also disclosed the pay package for its chief executive, Dick Costolo.      </Summary>
<Website>http://dealbook.nytimes.com/2013/10/22/twitter-sheds-a-light-on-fast-growth-of-its-newest-acquisition/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37373/guest@my.umbc.edu/1e5c792c4d855faa77362a452938e5f4/api/pixel</TrackingUrl>
<Tag>advertising-and-marketing</Tag>
<Tag>costolo-dick</Tag>
<Tag>executive-compensation</Tag>
<Tag>i-p-o-offerings</Tag>
<Tag>initial-public-offerings</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>mopub-inc</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>top-headline-2</Tag>
<Tag>twitter</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, 22 Oct 2013 21:33:10 -0400</PostedAt>
<EditAt>Wed, 23 Oct 2013 15:58:04 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="37374" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37374">
<Title>Using the Details Markup Element in your HTML5 Web Pages</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>This article walks web developers through the basics of the new details markup element introduced in HTML5.</p></div>
]]>
</Body>
<Summary>This article walks web developers through the basics of the new details markup element introduced in HTML5.</Summary>
<Website>http://www.htmlgoodies.com/HTML5/markup/using-the-details-markup-element-in-your-html5-web-pages.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37374/guest@my.umbc.edu/bc336773d3003f808bb764b9dd630abc/api/pixel</TrackingUrl>
<Tag>html</Tag>
<Tag>htmlgoodies</Tag>
<Tag>learning</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, 22 Oct 2013 21:24:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="37400" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37400">
<Title>Facebook Removes Beheading Video and Updates Standards</Title>
<Body>
<![CDATA[
    <div class="html-content">The company removed a video of a woman being beheaded from its site and said it would use a broader set of criteria to determine when gory videos are permitted on the site.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2Freuters%2F2013%2F10%2F22%2Ftechnology%2F22reuters-facebook-violence.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Removes+Beheading+Video+and+Updates+Standards" 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%2Freuters%2F2013%2F10%2F22%2Ftechnology%2F22reuters-facebook-violence.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Removes+Beheading+Video+and+Updates+Standards" 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%2Freuters%2F2013%2F10%2F22%2Ftechnology%2F22reuters-facebook-violence.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Removes+Beheading+Video+and+Updates+Standards" 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%2Freuters%2F2013%2F10%2F22%2Ftechnology%2F22reuters-facebook-violence.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Removes+Beheading+Video+and+Updates+Standards" 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%2Freuters%2F2013%2F10%2F22%2Ftechnology%2F22reuters-facebook-violence.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Removes+Beheading+Video+and+Updates+Standards" 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>
    </div>
]]>
</Body>
<Summary>The company removed a video of a woman being beheaded from its site and said it would use a broader set of criteria to determine when gory videos are permitted on the site.      </Summary>
<Website>http://www.nytimes.com/reuters/2013/10/22/technology/22reuters-facebook-violence.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37400/guest@my.umbc.edu/38b08179689fbe499631804ab7f4bcf5/api/pixel</TrackingUrl>
<Tag>facebook-inc-fb-nasdaq</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, 22 Oct 2013 20:45:41 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="37375" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37375">
<Title>SAP Bets on HTML5, Open Source and BOYT for Their Mobile App Platform</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>SAP goes for the open approach, allowing developer to leverage whatever tools they like in an effort to attract a larger pool of programmers.</p></div>
]]>
</Body>
<Summary>SAP goes for the open approach, allowing developer to leverage whatever tools they like in an effort to attract a larger pool of programmers.</Summary>
<Website>http://www.htmlgoodies.com/daily_news/sap-bets-on-html5-open-source-and-boyt-for-their-mobile-app-platform.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37375/guest@my.umbc.edu/efa2f26c65459682831c7e3a074b77a0/api/pixel</TrackingUrl>
<Tag>html</Tag>
<Tag>htmlgoodies</Tag>
<Tag>learning</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, 22 Oct 2013 20:36:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="37376" important="false" status="posted" url="https://my3.my.umbc.edu/posts/37376">
<Title>AssureSign Has Announced Their New Electronic Signature Software for Microsoft Dynamics CRM 2013</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>AssureSign today announced the official release of their electronic signature application for Microsoft Dynamics CRM.</p></div>
]]>
</Body>
<Summary>AssureSign today announced the official release of their electronic signature application for Microsoft Dynamics CRM.</Summary>
<Website>http://www.htmlgoodies.com/daily_news/assuresign-has-announced-their-new-electronic-signature-software-for-microsoft-dynamics-crm-2013.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/37376/guest@my.umbc.edu/3b2a80ab62a6875e22d8018a0404cdd4/api/pixel</TrackingUrl>
<Tag>html</Tag>
<Tag>htmlgoodies</Tag>
<Tag>learning</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, 22 Oct 2013 19:16:00 -0400</PostedAt>
</NewsItem>

</News>
