<?xml version="1.0"?>
<News hasArchived="true" page="8565" pageCount="10793" pageSize="10" timestamp="Sat, 05 Sep 2026 12:16:49 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8565&amp;range=2">
<NewsItem contentIssues="false" id="123176" important="false" status="posted" url="https://my3.my.umbc.edu/posts/123176">
<Title>Del. John A. Olszewski Jr., Public Policy PhD Student, Running for Maryland Senate</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>UMBC public policy PhD student Del. John A. Olszewski Jr. has announced that he is running for Maryland Senate in what the <em><a href="http://www.baltimoresun.com/news/maryland/baltimore-county/dundalk/bs-md-co-east-side-candidates-20130715,0,1974648.story#ixzz2ZW5pO2aM" rel="nofollow external" class="bo">Baltimore Sun </a></em>calls “a generational shift in Baltimore County politics.” The Dundalk-area seat he will seek is currently held by Sen. Norman R. Stone Jr., who, at the age of 77, will retire after almost 50 years in office.</p>
    <p>Olszewski said, “I’m running so I can be an even more aggressive advocate for the residents of District 6.” He noted, “My experience is that people are looking for common sense solutions to everyday problems. I’m not opposed to working across the aisle if it’s good for the people I represent.”</p>
    </div>
]]>
</Body>
<Summary>UMBC public policy PhD student Del. John A. Olszewski Jr. has announced that he is running for Maryland Senate in what the Baltimore Sun calls “a generational shift in Baltimore County politics.”...</Summary>
<Website>https://umbc.edu/stories/del-john-a-olszewski-jr-public-policy-phd-student-running-for-maryland-senate/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/123176/guest@my.umbc.edu/642fce241a84568f55a5c1b2e556f17d/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>publicpolicy</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 22 Jul 2013 14:06:57 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33008" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33008">
<Title>SEO in JS Web Apps</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>JavaScript and search engines have always had a tricky relationship, and SEO is often used as an argument against single page applications. I’m aiming to put some of those misconceptions to rest in this article and show you that it’s perfectly possible to create a pure JavaScript web application and still have good SEO.</p>
    
    <p>To demonstrate, take a look at the <a href="https://www.google.com/search?q=site%3Amonocle.io" rel="nofollow external" class="bo">search results</a> for <a href="http://monocle.io" rel="nofollow external" class="bo">Monocle</a>, a single page web app. You can see that even though the application relies on JavaScript, articles are still getting fetched and indexed correctly. </p>
    
    <p>While there are indications that Google’s spiders can index some urls they find in JavaScript, in my experience they haven’t been able to render and index complex JS web apps without a little help. The key to spidering JS apps lies in Google’s <a href="https://developers.google.com/webmasters/ajax-crawling/docs/specification" rel="nofollow external" class="bo">Ajax crawling specification</a>.</p>
    
    <p>The Ajax crawling specification was originally intended for JS apps that use the hash fragment in the URL, which was a popular technique for creating permalinks when the spec was initially developed. However, we can still use the same spec, with a few tweaks, for modern JS apps using HTML5’s <a href="https://developer.mozilla.org/en-US/docs/Web/Guide/DOM/Manipulating_the_browser_history" rel="nofollow external" class="bo">pushState</a> to modify the browser’s URL and history.</p>
    
    <p>Firstly, add the follow meta tag onto every page that needs to be spidered:</p>
    
    <pre><code>&lt;meta name="fragment" content="!"&gt;&#x000A;    </code></pre>
    
    <p>This will instruct Google’s spider to use the Ajax crawling specification with your site. When it sees this tag it’ll then proceed to fetch your site again, this time with the <code>_escaped_fragment_</code> parameter. We can detect this query parameter, and serve up spider safe content.</p>
    
    <p>You can see an example of this on Monocle, for the <a href="http://monocle.io/?_escaped_fragment_=" rel="nofollow external" class="bo">index page</a>, and also the <a href="http://monocle.io/posts/how-yield-will-transform-node?_escaped_fragment_=" rel="nofollow external" class="bo">post page</a>. As you can see, if the query param is present (and not even set to a value), I serve up raw HTML instead of the JS app.</p>
    
    <p>The code to do so is pretty straightforward. I’m using Sinatra, but the example below should give you a good indication on how to implement this in your framework of choice. I have two routes which are conditional on <code>_escaped_fragment_</code> being present as a parameter. </p>
    
    <pre><code>helpers do&#x000A;      set :spider do |enabled|&#x000A;        condition do&#x000A;          params.has_key?('_escaped_fragment_')&#x000A;        end&#x000A;      end&#x000A;    end&#x000A;    &#x000A;    get '/', :spider =&gt; true do&#x000A;      @posts = Post.published.popular.limit(30)&#x000A;      erb :spider_list&#x000A;    end&#x000A;    &#x000A;    get '/posts/:slug', :spider =&gt; true do&#x000A;      @post = Post.first!(slug: params[:slug])&#x000A;      erb :spider_page&#x000A;    end&#x000A;    </code></pre>
    
    <p>Make sure that you provide at least a title, meta description, header and text content on each page. Also make sure the meta description matches what you want to be displayed on the search results page.</p>
    
    <p>And that’s all you should need to do. You now have all the user-experience benefits of a JS web application without any of the SEO drawbacks. </p>
    
    <hr>
    
    <p><em>One other technique that was pointed out to me was rendering html content straight into a <code>&lt;noscript&gt;</code> tag <a href="https://support.google.com/webmasters/answer/66353?hl=en" rel="nofollow external" class="bo">embedded in the page</a>. I prefer the Ajax crawling spec approach though, as it means you’re not forced to do any SQL requests or rendering unnecessarily for non-bots.</em></p>
    </div>
]]>
</Body>
<Summary>JavaScript and search engines have always had a tricky relationship, and SEO is often used as an argument against single page applications. I’m aiming to put some of those misconceptions to rest...</Summary>
<Website>http://blog.alexmaccaw.com/seo-in-js-web-apps</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33008/guest@my.umbc.edu/da3cf78701b89733f587be73e0dcc687/api/pixel</TrackingUrl>
<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>Mon, 22 Jul 2013 13:50:00 -0400</PostedAt>
<EditAt>Mon, 22 Jul 2013 13:50:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="33055" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33055">
<Title>Time Capsule: Open Source Milestones</Title>
<Body>
<![CDATA[
    <div class="html-content">Which open source software started as "just a hobby" for a Finnish University Student? Find the answer in Time Capsule.</div>
]]>
</Body>
<Summary>Which open source software started as "just a hobby" for a Finnish University Student? Find the answer in Time Capsule.</Summary>
<Website>http://www.oracle.com/technetwork/issue-archive/2013/13-jul/o43timecapsule-1958804.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33055/guest@my.umbc.edu/a52e0630c1c636054113c96b73e27caf/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>pl-sql</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>Mon, 22 Jul 2013 13:43:22 -0400</PostedAt>
<EditAt>Tue, 23 Jul 2013 13:43:22 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="33006" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33006">
<Title>MS defense: Multicast Routing with Byzantine Robustness, D. Mukherjee, 2:30 7/23</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="network cables" height="308" src="//www.csee.umbc.edu/wp-content/uploads/2013/07/network.jpg" width="700" style="max-width: 100%; height: auto;"></p>
    <p><span>Computer Science and Electrical Engineering<br>
    	MS Thesis Defense</span></p>
    <p><span>Multicast Routing with Byzantine Robustness</span></p>
    <p><span>Debdatta Mukherjee</span></p>
    <p><span>2:30-4:30 Tuesday, july 23, 2013, ITE 346</span></p>
    <p>Network problems arise when nodes behave in arbitrary ways such as sending malformed messages, sending incorrect messages or not forwarding messages at all to other nodes in the network. These faults are called Byzantine failures. In a real network, these faults can be a result of hardware failure, cyber-attacks or network congestion. Due to the serious problems these faults can cause, it becomes important to make the network robust against them, so that the network continues to operate properly or degrades in an acceptable way in the presence of such faults. In this thesis, we propose methods that include multiple node disjoint path calculations and robust flooding to find byzantine-free multicast trees. By finding such trees, we can guarantee the delivery of the messages from a source to a particular multicast group.</p>
    <p>Committee: Professors Deepinder Sidhu (chair), Kostas Kalpakis and Sergei Nirenburg</p>
    </div>
]]>
</Body>
<Summary>Computer Science and Electrical Engineering   MS Thesis Defense   Multicast Routing with Byzantine Robustness   Debdatta Mukherjee   2:30-4:30 Tuesday, july 23, 2013, ITE 346   Network problems...</Summary>
<Website>http://www.csee.umbc.edu/2013/07/ms-defense-multicast-routing-with-byzantine-robustness-d-mukherjee-230-723/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33006/guest@my.umbc.edu/249fbb6681dde4c55763636577e14154/api/pixel</TrackingUrl>
<Tag>computer-science</Tag>
<Tag>defense</Tag>
<Tag>graduate</Tag>
<Tag>news</Tag>
<Tag>research</Tag>
<Tag>talks</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>5</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Jul 2013 12:43:10 -0400</PostedAt>
<EditAt>Mon, 22 Jul 2013 12:43:10 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33007" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33007">
<Title>DealBook: Activist Investor to Step Down From Yahoo Board</Title>
<Body>
<![CDATA[
    <div class="html-content">Daniel S. Loeb, whose campaign to change Yahoo culminated in the appointment last year of Marissa Mayer as the company’s chief executive, is resigning from the board.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F07%2F22%2Factivist-investor-to-step-down-from-yahoo-board%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Activist+Investor+to+Step+Down+From+Yahoo+Board" 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%2F07%2F22%2Factivist-investor-to-step-down-from-yahoo-board%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Activist+Investor+to+Step+Down+From+Yahoo+Board" 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%2F07%2F22%2Factivist-investor-to-step-down-from-yahoo-board%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Activist+Investor+to+Step+Down+From+Yahoo+Board" 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%2F07%2F22%2Factivist-investor-to-step-down-from-yahoo-board%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Activist+Investor+to+Step+Down+From+Yahoo+Board" 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%2F07%2F22%2Factivist-investor-to-step-down-from-yahoo-board%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Activist+Investor+to+Step+Down+From+Yahoo+Board" 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/165666361143/u/0/f/640387/c/34625/s/2f026360/kg/342-363/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666361143/u/0/f/640387/c/34625/s/2f026360/kg/342-363/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Daniel S. Loeb, whose campaign to change Yahoo culminated in the appointment last year of Marissa Mayer as the company’s chief executive, is resigning from the board.     </Summary>
<Website>http://dealbook.nytimes.com/2013/07/22/activist-investor-to-step-down-from-yahoo-board/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33007/guest@my.umbc.edu/fe52d00a3a6c6e4946df2faf96b78301/api/pixel</TrackingUrl>
<Tag>computers-and-the-internet</Tag>
<Tag>corporate-governance</Tag>
<Tag>loeb-daniel-s</Tag>
<Tag>mayer-marissa</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>new</Tag>
<Tag>private-equity</Tag>
<Tag>search-engines</Tag>
<Tag>technology</Tag>
<Tag>third-point-llc</Tag>
<Tag>top-headline-1</Tag>
<Tag>yahoo-inc</Tag>
<Tag>yahoo-inc-yhoo-nasdaq</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>Mon, 22 Jul 2013 12:26:10 -0400</PostedAt>
<EditAt>Tue, 23 Jul 2013 15:01:52 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="33059" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33059">
<Title>How do I install TurningPoint on my computer?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>edited</strong> by
                        <a href="https://wiki.umbc.edu/display/~anna%0A" rel="nofollow external" class="bo">Anna Sniadach</a>
                </p>
            <div>
                <div>
                                <span>Icon</span>
                    <div>
                                <p>Software can be found on <a href="http://www.umbc.edu/go/software" rel="nofollow external" class="bo">www.umbc.edu/go/software</a></p>
                        </div>
        </div>
    <h2>Tell Me</h2>
    <ol>
    <li>Double-click the downloaded setup file</li>
    <li>Click <strong>Next</strong>
    </li>
    <li>A window opens and displays the license agreement and select the radio button labeled “I accept the terms in the license agreement"</li>
    <li>Click <strong>Next</strong>
    </li>
    <li>Enter your name and UMBC as the organization in the fields provided and click <strong>Next</strong>
    </li>
    <li>A window opens and displays a message that the computer is ready to install TurningPoint</li>
    <li>Click <strong>Install</strong>
    </li>
    <li>The computer installs TurningPoint and displays the Finish button on the page when the process is complete</li>
    <li>Click <strong>Finish</strong>
    </li>
    <li>Select the Launch TurningPoint checkbox to immediately open the application, or double-click the TurningPoint shortcut on the desktop to open the application</li>
    </ol>
    <h2>Rate this Article</h2>
    <p>
    
    
    
    
    <strong>Was this helpful?</strong>
    <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D38371591&amp;q=0&amp;v=1&amp;s=faq&amp;l=turningpoint+faculty" rel="nofollow external" class="bo">Yes</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D38371591" rel="nofollow external" class="bo">No</a>
     | <a href="https://docs.google.com/a/umbc.edu/spreadsheet/viewform?formkey=dEpyOEZxa29QY05BaVpBVzZSYmRMM0E6MA&amp;entry_15=http%3A%2F%2Fwiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D38371591" rel="nofollow external" class="bo">Correct or Suggest an Article</a>
     | <a href="https://apps-my.umbc.edu/apps/rt-track/script.php?u=http://wiki.umbc.edu%2Fpages%2Fviewpage.action%3FpageId%3D38371591&amp;q=0&amp;v=0&amp;s=faq&amp;l=turningpoint+faculty" rel="nofollow external" class="bo">Request Help</a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=38371591" rel="nofollow external" class="bo">View Online</a>
                  ·
           <a href="https://wiki.umbc.edu/pages/diffpagesbyversion.action?pageId=38371591&amp;revisedVersion=4&amp;originalVersion=3" rel="nofollow external" class="bo">View Changes Online</a>       
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             edited by                     Anna Sniadach                                                                   Icon                                                Software can be...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=38371591</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33059/guest@my.umbc.edu/40cd529a2b81881951f244fd5065295f/api/pixel</TrackingUrl>
<Tag>faculty</Tag>
<Tag>faq</Tag>
<Tag>turningpoint</Tag>
<Group token="retired-428">UMBC FAQ</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-428</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/images/avatars/group/1/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/images/avatars/group/1/original.png?1787842820</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/1/xxlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/images/avatars/group/1/large.png?1787842820</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/images/avatars/group/1/medium.png?1787842820</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/images/avatars/group/1/small.png?1787842820</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/1/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/1/xxsmall.png?1787842820</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Jul 2013 11:58:32 -0400</PostedAt>
<EditAt>Wed, 04 Sep 2013 08:12:15 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33005" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33005">
<Title>UK web &#8216;porn&#8217; filtering could damage web industry</Title>
<Body>
<![CDATA[
    <div class="html-content">Danger of inefficiencies, blocking and brain drain<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fuk-web-porn-filtering-could-damage-web-industry-132899&amp;t=UK+web+%E2%80%98porn%E2%80%99+filtering+could+damage+web+industry" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fuk-web-porn-filtering-could-damage-web-industry-132899&amp;t=UK+web+%E2%80%98porn%E2%80%99+filtering+could+damage+web+industry" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fuk-web-porn-filtering-could-damage-web-industry-132899&amp;t=UK+web+%E2%80%98porn%E2%80%99+filtering+could+damage+web+industry" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fuk-web-porn-filtering-could-damage-web-industry-132899&amp;t=UK+web+%E2%80%98porn%E2%80%99+filtering+could+damage+web+industry" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fuk-web-porn-filtering-could-damage-web-industry-132899&amp;t=UK+web+%E2%80%98porn%E2%80%99+filtering+could+damage+web+industry" 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/165666878097/u/49/f/502346/c/32632/s/2f01a0e3/kg/342/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/165666878097/u/49/f/502346/c/32632/s/2f01a0e3/kg/342/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Danger of inefficiencies, blocking and brain drain     </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/2xFJX4A2dPk/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33005/guest@my.umbc.edu/58fefed5ddba331361a56ef69d3d4a39/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 22 Jul 2013 11:09:57 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="32998" important="false" status="posted" url="https://my3.my.umbc.edu/posts/32998">
<Title>Career Q&amp;A: Jennifer Mercer &#8217;12, INDS, Intern with Free State Legal Project</Title>
<Body>
<![CDATA[
    <div class="html-content">Every so often, we’ll chat with an alum about what they do and how they got there. Today we’re talking with student attorney Jennifer Mercer ’12, interdisciplinary studies, about how her time at UMBC helped prepare her for her work … <a href="http://umbcalumni.wordpress.com/2013/07/22/career-qa-jennifer-mercer-12-inds-intern-with-free-state-legal-project/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>Every so often, we’ll chat with an alum about what they do and how they got there. Today we’re talking with student attorney Jennifer Mercer ’12, interdisciplinary studies, about how her time at...</Summary>
<Website>http://umbcalumni.wordpress.com/2013/07/22/career-qa-jennifer-mercer-12-inds-intern-with-free-state-legal-project/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/32998/guest@my.umbc.edu/5f57e69b14dd3f13452427ec2f554015/api/pixel</TrackingUrl>
<Tag>10s-alums</Tag>
<Tag>baltimore</Tag>
<Tag>career-q-and-a</Tag>
<Tag>education</Tag>
<Tag>interdisciplinary-studies</Tag>
<Tag>lgbt</Tag>
<Tag>maryland</Tag>
<Tag>umbc</Tag>
<Tag>university-of-maryland</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Group token="retired-20">UMBC Alumni</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-20</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/original.png?1280681147</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/large.png?1280681147</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/medium.png?1280681147</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/small.png?1280681147</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxsmall.png?1280681147</AvatarUrl>
<Sponsor>UMBC Alumni</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 22 Jul 2013 11:06:32 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33943" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33943">
<Title>Career Q&amp;A: Jennifer Mercer &#8217;12, INDS, Intern with Free State Legal Project</Title>
<Body>
<![CDATA[
    <div class="html-content">Every so often, we’ll chat with an alum about what they do and how they got there. Today we’re talking with student attorney Jennifer Mercer ’12, interdisciplinary studies, about how her time at UMBC helped prepare her for her work … <a href="https://umbcalumni.wordpress.com/2013/07/22/career-qa-jennifer-mercer-12-inds-intern-with-free-state-legal-project/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>Every so often, we’ll chat with an alum about what they do and how they got there. Today we’re talking with student attorney Jennifer Mercer ’12, interdisciplinary studies, about how her time at...</Summary>
<Website>https://umbcalumni.wordpress.com/2013/07/22/career-qa-jennifer-mercer-12-inds-intern-with-free-state-legal-project/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33943/guest@my.umbc.edu/89be01a6047394a31a3522e778a27b7e/api/pixel</TrackingUrl>
<Tag>10s-alums</Tag>
<Tag>baltimore</Tag>
<Tag>career-q-and-a</Tag>
<Tag>education</Tag>
<Tag>interdisciplinary-studies</Tag>
<Tag>lgbt</Tag>
<Tag>maryland</Tag>
<Tag>umbc</Tag>
<Tag>university-of-maryland</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Group token="retired-20">UMBC Alumni</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-20</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/original.png?1280681147</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xlarge.png?1280681147</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/large.png?1280681147</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/medium.png?1280681147</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/small.png?1280681147</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xsmall.png?1280681147</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/020/08fe2621d8e716b02ec0da35256a998d/xxsmall.png?1280681147</AvatarUrl>
<Sponsor>UMBC Alumni</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 22 Jul 2013 11:06:32 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="106951" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106951">
<Title>Career Q&amp;A: Jennifer Mercer &#8217;12, INDS, Intern with Free State Legal Project</Title>
<Body>
<![CDATA[
    <div class="html-content">Every so often, we’ll chat with an alum about what they do and how they got there. Today we’re talking …</div>
]]>
</Body>
<Summary>Every so often, we’ll chat with an alum about what they do and how they got there. Today we’re talking …</Summary>
<Website>https://magazine.umbc.edu/career-qa-jennifer-mercer-12-inds-intern-with-free-state-legal-project/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106951/guest@my.umbc.edu/4ce68f1b98dfa7fb1f45815fb9f1c1fa/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Tag>baltimore</Tag>
<Tag>education</Tag>
<Tag>lgbt</Tag>
<Tag>maryland</Tag>
<Tag>umbc</Tag>
<Tag>university-of-maryland</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/images/avatars/group/8/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/images/avatars/group/8/original.png?1787842820</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/8/xxlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/8/xlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/8/large.png?1787842820</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/8/medium.png?1787842820</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/8/small.png?1787842820</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/8/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/8/xxsmall.png?1787842820</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Mon, 22 Jul 2013 11:06:32 -0400</PostedAt>
</NewsItem>

</News>
