<?xml version="1.0"?>
<News hasArchived="true" page="8335" pageCount="10751" pageSize="10" timestamp="Sun, 16 Aug 2026 14:17:37 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8335">
<NewsItem contentIssues="false" id="35553" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35553">
<Title>Academics Launch Fake Social Network to Get an Inside Look at Chinese Censorship</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>New research shows China’s online censorship relies on a competitive market where companies vie to offer the best speech-suppressing technology and services.</p>
    <p>Nine years after Mark Zuckerberg quit Harvard to build Facebook, one of the university’s political science professors, <a href="http://gking.harvard.edu/" rel="nofollow external" class="bo">Gary King</a>, decided this year it was time to launch his own social media site. But King didn’t set up his Chinese social network to make money; instead, he wanted to get an insider’s view of Chinese censorship, which relies on Internet providers censoring their own sites in line with government guidelines. King won’t disclose his site’s URL, to protect people involved with his project.</p>
    </div>
]]>
</Body>
<Summary>New research shows China’s online censorship relies on a competitive market where companies vie to offer the best speech-suppressing technology and services.  Nine years after Mark Zuckerberg quit...</Summary>
<Website>http://www.technologyreview.com/news/519066/academics-launch-fake-social-network-to-get-an-inside-look-at-chinese-censorship/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35553/guest@my.umbc.edu/521b50a203ae4557a334a93397351782/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 11:10:00 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35547" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35547">
<Title>Cross-Domain Messaging With postMessage</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>As we build an ecosystem where web applications can interact with one another we need a way of securely sending messages between windows. The <code>postMessage()</code> method provides just that.</p>
    <p>For a long time sending messages between windows was only possible if the windows used the same protocol, port, and host. The <code>postMessage()</code> method lifts this restriction by providing a way to securely pass messages across domains.</p>
    <p>In this blog post you are going to learn how to use the <code>postMessage()</code> method to communicate between a controller window and a receiver window running different domains.</p>
    <h2>Sending Messages with postMessage()</h2>
    <p>The <code>postMessage()</code> method accepts two parameters.</p>
    <ul>
    <li>
    <code>message</code> – A string or object that will be sent to the receiving window.</li>
    <li>
    <code>targetOrigin</code> – The URL of the window that the message is being sent to. The protocol, port and hostname of the target window must match this parameter for the message to be sent. Specifying <code>"*"</code> will match any URL however this is strongly discouraged for security reasons.</li>
    </ul>
    <p>This method should be called on the window that the message is being sent to. A reference to the target window can be obtained in a number of different ways:</p>
    <ul>
    <li>When using <code>window.open()</code> a reference to the new window will be returned by the <code>open()</code> method.</li>
    <li>For iframes you can access the <code>contentWindow</code> property on the desired iframe.</li>
    </ul>
    <pre>targetWindow.postMessage('Hello World!', '<a href="http://example.com">http://example.com</a>');</pre>
    <p>Now lets take a look at how to receive messages sent to a window.</p>
    <h2>Setting up Event Listeners to Receive Messages</h2>
    <p>When a call to <code>postMessage()</code> is executed successfully a <a href="https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent" rel="nofollow external" class="bo"><code>MessageEvent</code></a> will be fired on the receiving window. You can use a standard event listener to watch for this event and execute some code when it occurs.</p>
    <p>The event passed into the listener callback has a property called <code>data</code> that can be used to access the string or object that was sent by <code>postMessage()</code>.</p>
    <pre>window.addEventListener('message', function(e) {&#x000A;      var message = e.data;&#x000A;    });</pre>
    <h2>Demo: Communicating with an iframe</h2>
    <div>
    <a href="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/postmessage-demo.png" rel="nofollow external" class="bo"><img alt="Using postMessage to communicate with an iframe" src="http://blog.teamtreehouse.com/wp-content/uploads/2013/09/postmessage-demo.png" width="536" height="381" style="max-width: 100%; height: auto;"></a><p>Using postMessage to communicate with an iframe</p>
    </div>
    <p>Now that you understand how to use <code>postMessage()</code> to pass messages between two windows on different domains lets take a look at an example.</p>
    <p>In this section we are going to go through the code needed to create a simple demo that passes a message from a <em>controller</em> page to a <em>receiver</em> page that is embedded using an iframe.</p>
    <p><a href="http://codepen.io/matt-west/full/lpExI" rel="nofollow external" class="bo">See the Demo</a> <a href="http://cl.ly/3M1x3T1M0X2C" rel="nofollow external" class="bo">Download The Code</a> <a href="http://codepen.io/matt-west/pen/lpExI" rel="nofollow external" class="bo">View on CodePen</a></p>
    <h3>The Controller Window</h3>
    <p>To get started we need to write some HTML for the controller page. The main elements here are a <code>&lt;button&gt;</code> that will be used to send the message and an <code>&lt;iframe&gt;</code> that will display the receiver page (which is hosted on a different domain).</p>
    <pre>&lt;h1&gt;Controller Window&lt;/h1&gt;&#x000A;    &lt;p&gt;&#x000A;      This document is on the domain: <a href="http://codepen.io">http://codepen.io</a>&#x000A;    &lt;/p&gt;&#x000A;    &lt;p&gt;&#x000A;      &lt;button id="send"&gt;Send Message&lt;/button&gt;&#x000A;    &lt;/p&gt;&#x000A;    &#x000A;    &lt;iframe id="receiver" src="<a href="http://demos.matt-west.com/post-message/receiver.html">http://demos.matt-west.com/post-message/receiver.html</a>" width="500" height="200"&gt;&#x000A;      &lt;p&gt;Your browser does not support iframes.&lt;/p&gt;&#x000A;    &lt;/iframe&gt;</pre>
    <p>Turning to the JavaScript for the controller page, our first job is to get a reference to the receiver window and store it in a variable called <code>receiver</code>. We then get a reference to the button and store this in a variable called <code>btn</code>.</p>
    <p>Next we need to write a function that will handle sending the message. This will be called when the user clicks the ‘Send Message’ button. In this function we call <code>postMessage()</code> on our <code>receiver</code> variable and pass in <code>'Hello Treehouse!'</code> as our message data. The receiver page is hosted on the domain <code><a href="http://demos.matt-west.com">http://demos.matt-west.com</a></code> so we pass in that URL for the <code>targetOrigin</code> parameter.</p>
    <p>Finally we setup an event listener on <code>btn</code> that will call the <code>sendMessage()</code> function when the button is clicked.</p>
    <pre>window.onload = function() {&#x000A;      // Get the window displayed in the iframe.&#x000A;      var receiver = document.getElementById('receiver').contentWindow;&#x000A;    &#x000A;      // Get a reference to the 'Send Message' button.&#x000A;      var btn = document.getElementById('send');&#x000A;    &#x000A;      // A function to handle sending messages.&#x000A;      function sendMessage(e) {&#x000A;        // Prevent any default browser behaviour.&#x000A;        e.preventDefault();&#x000A;    &#x000A;        // Send a message with the text 'Hello Treehouse!' to the receiver window.&#x000A;        receiver.postMessage('Hello Treehouse!', '<a href="http://demos.matt-west.com">http://demos.matt-west.com</a>');&#x000A;      }&#x000A;    &#x000A;      // Add an event listener that will execute the sendMessage() function&#x000A;      // when the send button is clicked.&#x000A;      btn.addEventListener('click', sendMessage);&#x000A;    }</pre>
    <p>That’s everything that we need for the controller window so lets move on and take a look at the code for the receiver.</p>
    <h3>The Receiver Window</h3>
    <p>The HTML for the receiver window is pretty basic. The only key element here is a <code>&lt;div&gt;</code> with the ID <code>message</code> that will be used to display the message data passed to the window.</p>
    <pre>&lt;h1&gt;Receiver Window&lt;/h1&gt;&#x000A;    &lt;p&gt;&#x000A;      This document is on the domain: <a href="http://demos.matt-west.com">http://demos.matt-west.com</a>&#x000A;    &lt;/p&gt;&#x000A;    &lt;div id="message"&gt;&lt;/div&gt;</pre>
    <p>In the JavaScript for the receiver window we first need to get a reference to the <code>&lt;div&gt;</code> element in our HTML.</p>
    <p>Next we create a function called <code>receiveMessage</code> that will be executed when the window receives a new message. Inside this function we first check to make sure that the message is coming from <code><a href="http://s.codepen.io">http://s.codepen.io</a></code> (the domain for the controller page). Any website can pass a message to your page so it’s best to always check the origin of the message before executing any code. The origin can be found by examining the <code>origin</code> property on the event. We then retrieve the message data from the <code>data</code> property of the <code>event</code><br>
    and use this to update the content of <code>messageEle</code>.</p>
    <p>Finally we setup an event listener on the <code>window</code> that will execute the <code>receiveMessage()</code> function when the <code>message</code> event is fired.</p>
    <pre>window.onload = function() {&#x000A;      // Get a reference to the div on the page that will display the&#x000A;      // message text.&#x000A;      var messageEle = document.getElementById('message');&#x000A;    &#x000A;      // A function to process messages received by the window.&#x000A;      function receiveMessage(e) {&#x000A;        // Check to make sure that this message came from the correct domain.&#x000A;        if (e.origin !== "<a href="http://s.codepen.io">http://s.codepen.io</a>")&#x000A;          return;&#x000A;    &#x000A;        // Update the div element to display the message.&#x000A;        messageEle.innerHTML = "Message Received: " + e.data;&#x000A;      }&#x000A;    &#x000A;      // Setup an event listener that calls receiveMessage() when the window&#x000A;      // receives a new MessageEvent.&#x000A;      window.addEventListener('message', receiveMessage);&#x000A;    }</pre>
    <p>If you load up the <a href="http://codepen.io/matt-west/pen/lpExI" rel="nofollow external" class="bo">live demo</a> you should see that clicking the ‘Send Message’ button causes the <code>Hello Treehouse!</code> text to be displayed in the iframe. Success!</p>
    <p>Try downloading the code archive and setting up this example for yourself. Be sure to change the domains in the JavaScript code to match your own.</p>
    <h2>Browser Support For postMessage</h2>
    <p>Support for <code>postMessage()</code> has been around in browsers for some time now. Internet Explorer has included support since version 8 but it’s worth noting that IE8 and IE9 only support <code>postMessage()</code> for communicating between a document and an iframe, support for cross-window/tab messaging arrived in IE10.</p>
    <table>
    <thead>
    <tr>
    <th>IE</th>
    <th>Firefox</th>
    <th>Chrome</th>
    <th>Safari</th>
    <th>Opera</th>
    </tr>
    </thead>
    <tbody>
    <tr>
    <td>8+</td>
    <td>3.0+</td>
    <td>1.0+</td>
    <td>4.0+</td>
    <td>9.5+</td>
    </tr>
    </tbody>
    </table>
    <h2>Final Thoughts</h2>
    <p>In this blog post you have learned how to use <code>postMessage()</code> to communicate between two web pages that are hosted on different domains.</p>
    <p>There are a few security considerations that need to be taken into account when using <code>postMessage()</code>. First make sure that you are always specifying full URLs as your <code>targetOrigin</code> parameter and not just using wildcards (<code>*</code>), otherwise you could inadvertently send data to a malicious website. Checking the origin of messages sent to your web pages is also a good way of keeping your pages secure.</p>
    <p>It may not be something that you will find yourself using everyday but <code>postMessage()</code> is a really handy tool to have in your toolbox, especially if you do a lot of work with iframes.</p>
    <h2>Useful Links</h2>
    <ul>
    <li><a href="https://developer.mozilla.org/en-US/docs/Web/API/window.postMessage" rel="nofollow external" class="bo">Window.postMessage Documentation (MDN)</a></li>
    <li><a href="http://caniuse.com/#feat=x-doc-messaging" rel="nofollow external" class="bo">Can I use… Cross-Document Messaging</a></li>
    </ul>
    <p>The post <a href="http://blog.teamtreehouse.com/cross-domain-messaging-with-postmessage" rel="nofollow external" class="bo">Cross-Domain Messaging With postMessage</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>As we build an ecosystem where web applications can interact with one another we need a way of securely sending messages between windows. The postMessage() method provides just that.   For a long...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/qS0AINE9e6w/cross-domain-messaging-with-postmessage</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35547/guest@my.umbc.edu/266c77ae38067056e6574b5755e4568d/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>postmessage</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Tag>web-apps</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 10:55:18 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="35543" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35543">
<Title>DealBook: Long Battle for Dell Ends in Victory for Founder</Title>
<Body>
<![CDATA[
    <div class="html-content">Dell shareholders voted to approve the computer company’s $24.9 billion sale to its founder, ending a months-long slog that included fierce opposition from some investors.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F12%2Fdell-shareholders-approve-24-9-billion-buyout%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Long+Battle+for+Dell+Ends+in+Victory+for+Founder" 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%2F09%2F12%2Fdell-shareholders-approve-24-9-billion-buyout%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Long+Battle+for+Dell+Ends+in+Victory+for+Founder" 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%2F09%2F12%2Fdell-shareholders-approve-24-9-billion-buyout%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Long+Battle+for+Dell+Ends+in+Victory+for+Founder" 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%2F09%2F12%2Fdell-shareholders-approve-24-9-billion-buyout%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Long+Battle+for+Dell+Ends+in+Victory+for+Founder" 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%2F09%2F12%2Fdell-shareholders-approve-24-9-billion-buyout%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Long+Battle+for+Dell+Ends+in+Victory+for+Founder" 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/174726873053/u/0/f/640387/c/34625/s/31256783/sc/2/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726873053/u/0/f/640387/c/34625/s/31256783/sc/2/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/174726873053/u/0/f/640387/c/34625/s/31256783/sc/2/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726873053/u/0/f/640387/c/34625/s/31256783/sc/2/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/174726873053/u/0/f/640387/c/34625/s/31256783/sc/2/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726873053/u/0/f/640387/c/34625/s/31256783/sc/2/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/174726873053/u/0/f/640387/c/34625/s/31256783/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726873053/u/0/f/640387/c/34625/s/31256783/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Dell shareholders voted to approve the computer company’s $24.9 billion sale to its founder, ending a months-long slog that included fierce opposition from some investors.      </Summary>
<Website>http://dealbook.nytimes.com/2013/09/12/dell-shareholders-approve-24-9-billion-buyout/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35543/guest@my.umbc.edu/b9979cf6444f4f4103f6fb1a2d5fe8be/api/pixel</TrackingUrl>
<Tag>computers-and-the-internet</Tag>
<Tag>dell-inc</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>new</Tag>
<Tag>silver-lake-partners</Tag>
<Tag>technology</Tag>
<Tag>top-headline-1</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 10:32:14 -0400</PostedAt>
<EditAt>Fri, 13 Sep 2013 13:34:14 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35544" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35544">
<Title>DealBook: KPN and Am&#233;rica M&#243;vil Still in Talks</Title>
<Body>
<![CDATA[
    <div class="html-content">América Móvil, the Latin American telecommunications company, confirmed that it remained in talks with the Dutch cellphone company about a potential bid worth $9.6 billion.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2013%2F09%2F12%2Fkpn-and-amrica-mvil-still-in-talks%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+KPN+and+Am%C3%A9rica+M%C3%B3vil+Still+in+Talks" 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%2F09%2F12%2Fkpn-and-amrica-mvil-still-in-talks%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+KPN+and+Am%C3%A9rica+M%C3%B3vil+Still+in+Talks" 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%2F09%2F12%2Fkpn-and-amrica-mvil-still-in-talks%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+KPN+and+Am%C3%A9rica+M%C3%B3vil+Still+in+Talks" 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%2F09%2F12%2Fkpn-and-amrica-mvil-still-in-talks%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+KPN+and+Am%C3%A9rica+M%C3%B3vil+Still+in+Talks" 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%2F09%2F12%2Fkpn-and-amrica-mvil-still-in-talks%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+KPN+and+Am%C3%A9rica+M%C3%B3vil+Still+in+Talks" 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/174726873052/u/0/f/640387/c/34625/s/31256794/sc/2/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726873052/u/0/f/640387/c/34625/s/31256794/sc/2/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/174726873052/u/0/f/640387/c/34625/s/31256794/sc/2/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726873052/u/0/f/640387/c/34625/s/31256794/sc/2/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/174726873052/u/0/f/640387/c/34625/s/31256794/sc/2/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726873052/u/0/f/640387/c/34625/s/31256794/sc/2/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/174726873052/u/0/f/640387/c/34625/s/31256794/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726873052/u/0/f/640387/c/34625/s/31256794/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>América Móvil, the Latin American telecommunications company, confirmed that it remained in talks with the Dutch cellphone company about a potential bid worth $9.6 billion.      </Summary>
<Website>http://dealbook.nytimes.com/2013/09/12/kpn-and-amrica-mvil-still-in-talks/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35544/guest@my.umbc.edu/e817e4156575a495ebb50c5abf0c48a7/api/pixel</TrackingUrl>
<Tag>america-movil-sab-de-cv</Tag>
<Tag>koninklijke-kpn-nv</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>telecommunications</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 10:20:01 -0400</PostedAt>
<EditAt>Thu, 12 Sep 2013 10:20:01 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35548" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35548">
<Title>Astounding underwater photography</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/09/thumbnail8.jpg" width="200" height="160" style="max-width: 100%; height: auto;">These incredibly beautiful images by artist <a href="http://www.christyrogers.com/" rel="nofollow external" class="bo">Christy Lee Rogers</a> are created without the aid of Photoshop, with carefully lit models, in water, at night.</p> <p>Not the first to use the medium of water — the seminal video artist <a href="http://www.billviola.com/" rel="nofollow external" class="bo">Bill Viola</a> springs to mind — Rogers has refined the process to achieve an astounding painterly quality.</p> <p>The tenebrist technique has lead to numerous comparisons with the baroque master Caravaggio, although her use of color and the distortion caused by the water’s surface also brings to mind the work of El Greco.</p> <p>Her latest collection “Of Smoke and Gold” will be on display at the <a href="http://www.arteafk.com/#!e-lee-tudo/ch3y" rel="nofollow external" class="bo">Galeria de Arte AFK,</a> Lisbon, Portugal from November 2nd – 30th.</p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_001.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_002.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_003.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_004.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_005.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_006.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_007.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_008.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_009.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_010.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_011.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_012.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_013.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_014.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_015.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_016.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_017.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p><a href="http://www.christyrogers.com/" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2013/09/rogers_018.jpg" width="650" alt="Astounding underwater photography" style="max-width: 100%; height: auto;"></a></p> <p> </p> <p><em><strong>Do you feel an affinity with water? Have you used water in your work? Let us know in the comments.</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/notism.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Notism: Discuss Visual Content and Get Feedback – only $13!</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="Astounding underwater photography" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/09/astounding-underwater-photography/" 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%2F09%2Fastounding-underwater-photography%2F&amp;t=Astounding+underwater+photography" 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%2F09%2Fastounding-underwater-photography%2F&amp;t=Astounding+underwater+photography" 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%2F09%2Fastounding-underwater-photography%2F&amp;t=Astounding+underwater+photography" 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%2F09%2Fastounding-underwater-photography%2F&amp;t=Astounding+underwater+photography" 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%2F09%2Fastounding-underwater-photography%2F&amp;t=Astounding+underwater+photography" 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/174726872152/u/49/f/661066/c/35285/s/31256030/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726872152/u/49/f/661066/c/35285/s/31256030/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>These incredibly beautiful images by artist Christy Lee Rogers are created without the aid of Photoshop, with carefully lit models, in water, at night.   Not the first to use the medium of water —...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/31256030/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A90Castounding0Eunderwater0Ephotography0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35548/guest@my.umbc.edu/d8d8a7a4ee4845b84aedf0e5fe40b751/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>baroque</Tag>
<Tag>christy-lee-rogers</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>editorial-photographs</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>inspiration</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photography</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>underwater-photography</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 10:15:40 -0400</PostedAt>
<EditAt>Thu, 12 Sep 2013 10:15:40 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35552" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35552">
<Title>Quick and dirty usability testing</Title>
<Body>
<![CDATA[
    <div class="html-content">Leah Buley outlines two quick usability tests that should be repeated throughout a project to ensure your design isn't veering off-course<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Ffeatures%2Fquick-and-dirty-usability-testing&amp;t=Quick+and+dirty+usability+testing" 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%2Ffeatures%2Fquick-and-dirty-usability-testing&amp;t=Quick+and+dirty+usability+testing" 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%2Ffeatures%2Fquick-and-dirty-usability-testing&amp;t=Quick+and+dirty+usability+testing" 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%2Ffeatures%2Fquick-and-dirty-usability-testing&amp;t=Quick+and+dirty+usability+testing" 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%2Ffeatures%2Fquick-and-dirty-usability-testing&amp;t=Quick+and+dirty+usability+testing" 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/174726874821/u/49/f/502346/c/32632/s/3125ece6/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726874821/u/49/f/502346/c/32632/s/3125ece6/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/174726874821/u/49/f/502346/c/32632/s/3125ece6/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726874821/u/49/f/502346/c/32632/s/3125ece6/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/174726874821/u/49/f/502346/c/32632/s/3125ece6/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726874821/u/49/f/502346/c/32632/s/3125ece6/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/174726874821/u/49/f/502346/c/32632/s/3125ece6/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726874821/u/49/f/502346/c/32632/s/3125ece6/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Leah Buley outlines two quick usability tests that should be repeated throughout a project to ensure your design isn't veering off-course      </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/rabWcw75TaI/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35552/guest@my.umbc.edu/85e9ddf5de539b0801de7e3a9ce5bd33/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>net</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 10:14:22 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="35542" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35542">
<Title>How do I change the point values after students have submitted the Blackboard test?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>added</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>Instructors can change a test question’s point value after students have submitted tests. The test scores will then be automatically recalculated.</p>
                        </div>
        </div>
    <h2>Tell Me</h2>
    <ol>
    <li>Click on the <strong>Grade Center</strong>
    </li>
    <li>Find the column for the test</li>
    <li>Click the column's action link</li>
    <li>Select <strong>Edit Test</strong> from the drop down list<br>The Test Canvas page is displayed</li>
    <li>There are two ways to change the points:<ol>
    <li>Change a group of questions with the same values<ol>
    <li>Click the checkbox for each question you want to change</li>
    <li>In the <em>Points</em> field, enter the new value for the selected questions</li>
    <li>Click <strong>Update and Regrade</strong> button</li>
    </ol>
    </li>
    <li>Change a single question's points:<ol>
    <li>Click the <strong>Points</strong> field at the far right of the question</li>
    <li>Click the <strong>Update Points</strong> field in the popup window</li>
    <li>Enter the new value</li>
    <li>Click <strong>Submit and Regrade</strong> button</li>
    </ol>
    </li>
    </ol>
    </li>
    <li>Click <strong>OK</strong> to continue</li>
    <li>Click <strong>OK</strong> to return to the <em>Grade Center</em>
    </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%3D41190119&amp;q=0&amp;v=1&amp;s=faq&amp;l=blackboard+grade_center+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%3D41190119" 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%3D41190119" 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%3D41190119&amp;q=0&amp;v=0&amp;s=faq&amp;l=blackboard+grade_center+faculty" rel="nofollow external" class="bo">Request Help</a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=41190119" rel="nofollow external" class="bo">View Online</a>
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             added by                     Anna Sniadach                                                                   Icon                                                Instructors can...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=41190119</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35542/guest@my.umbc.edu/21dfeafafd5699393be73fae3f83ac68/api/pixel</TrackingUrl>
<Tag>blackboard</Tag>
<Tag>faculty</Tag>
<Tag>faq</Tag>
<Tag>grade-center</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?1786447565</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/1/original.png?1786447565</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786447565</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786447565</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/images/avatars/group/1/large.png?1786447565</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/1/medium.png?1786447565</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/1/small.png?1786447565</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/1/xsmall.png?1786447565</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786447565</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 10:08:42 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="35541" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35541">
<Title>We're growing! The expansion of our Columbia facility is complete, adding one po...</Title>
<Body>
<![CDATA[
    <div class="html-content">We're growing! The expansion of our Columbia facility is complete, adding one pod-style classroom and two computer labs, expanding the facility to a total of 16,000 square feet.<br> <br> Come by our Open House next Wednesday to snag a peek at the new space!<br><br><br><a href="http://www.facebook.com/l.php?u=http%3A%2F%2Fwww.umbctraining.com%2FAbout-Us%2FNews%2FUMBC-Training-Centers-Expands-Capacity-to-Meet-Rap&amp;h=AAQHIxBHo&amp;s=1" rel="nofollow external" class="bo">About Us</a><br><a href="http://www.umbctraining.com">www.umbctraining.com</a><br>About UMBC Training Centers</div>
]]>
</Body>
<Summary>We're growing! The expansion of our Columbia facility is complete, adding one pod-style classroom and two computer labs, expanding the facility to a total of 16,000 square feet.    Come by our...</Summary>
<Website>http://www.facebook.com/umbctraining/posts/10151572897481076</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35541/guest@my.umbc.edu/9bf85c9944df60c1a15a6992d4cdd84b/api/pixel</TrackingUrl>
<Tag>ccna</Tag>
<Tag>ceh</Tag>
<Tag>centers</Tag>
<Tag>cisco</Tag>
<Tag>cyber</Tag>
<Tag>cybersecurity</Tag>
<Tag>information</Tag>
<Tag>it</Tag>
<Tag>leadership</Tag>
<Tag>management</Tag>
<Tag>microsoft</Tag>
<Tag>project</Tag>
<Tag>security</Tag>
<Tag>technology</Tag>
<Tag>training</Tag>
<Tag>umbc</Tag>
<Group token="retired-575">UMBC Training Centers</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-575</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/original.jpg?1361981335</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/large.png?1361981335</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/medium.png?1361981335</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/small.png?1361981335</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxsmall.png?1361981335</AvatarUrl>
<Sponsor>UMBC Training Centers</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 10:00:00 -0400</PostedAt>
<EditAt>Thu, 12 Sep 2013 10:00:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="35536" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35536">
<Title>How do I delete a test question after it has already been deployed and there are recorded student attempts?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>added</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>If no students have taken the test, instructors can delete questions freely before or after a test is deployed. However, if there are test submissions, deleting a question removes it from the assessment, along with any possible points earned. Test attempts are <span><strong>regraded </strong></span>as if the question had not been included in the assessment.</p>
                        </div>
        </div>
    <h2>Tell Me</h2>
    <ol>
    <li>Click on the <strong>Grade Center</strong>
    </li>
    <li>Click the test column's action link</li>
    <li>Select <strong>Edit Test</strong> from the drop down list<br>The Test Canvas page display</li>
    <li>Find the question to delete</li>
    <li>Click its action link at the right of the question link</li>
    <li>Select <strong>Delete and Regrade</strong><br>OR<br>Click the checkbox at the left of the question to select it. Then use the <strong>Delete and Regrade</strong> button at the top/bottom of the question list</li>
    <li>Click <strong>OK</strong> to return to the Grade Center </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%3D41190114&amp;q=0&amp;v=1&amp;s=faq&amp;l=blackboard+faculty+grade_center" 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%3D41190114" 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%3D41190114" 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%3D41190114&amp;q=0&amp;v=0&amp;s=faq&amp;l=blackboard+faculty+grade_center" rel="nofollow external" class="bo">Request Help</a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=41190114" rel="nofollow external" class="bo">View Online</a>
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             added by                     Anna Sniadach                                                                   Icon                                                If no students...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=41190114</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35536/guest@my.umbc.edu/f0bcf09301c9efffb372616037ce2251/api/pixel</TrackingUrl>
<Tag>blackboard</Tag>
<Tag>faculty</Tag>
<Tag>faq</Tag>
<Tag>grade-center</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?1786447565</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/1/original.png?1786447565</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786447565</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786447565</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/images/avatars/group/1/large.png?1786447565</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/1/medium.png?1786447565</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/1/small.png?1786447565</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/1/xsmall.png?1786447565</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786447565</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 09:40:12 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="35537" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35537">
<Title>How do I change the correct answer to regrade an assessment in Blackboard?</Title>
<Body>
<![CDATA[
    <div class="html-content"><div>    <p>
            Page
                <strong>added</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>Instructors can change the correct answer to a test question after students have submitted tests. The test will then be automatically regraded. If the regraded test question is linked to another test in the same course, that test will also be automatically regraded.</p>
                        </div>
        </div>
    <h2>Tell Me</h2>
    <ol>
    <li>Click on the <strong>Grade Center</strong> under the Control Panel</li>
    <li>Find the column for the test</li>
    <li>Click the column's action link</li>
    <li>Select <strong>Edit Test</strong> from the drop down list<br>The Test Canvas page displays </li>
    <li>Edit the question as needed</li>
    <li>Click <strong>Submit</strong> and <strong>Update Attempts</strong> button at the bottom right</li>
    <li>Click <strong>OK</strong> on the confirmation window</li>
    <li>Click <strong>OK</strong> to return to the Grade Center</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%3D41190111&amp;q=0&amp;v=1&amp;s=faq&amp;l=" 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%3D41190111" 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%3D41190111" 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%3D41190111&amp;q=0&amp;v=0&amp;s=faq&amp;l=" rel="nofollow external" class="bo">Request Help</a></p>
        </div>
            <div>
           <a href="https://wiki.umbc.edu/pages/viewpage.action?pageId=41190111" rel="nofollow external" class="bo">View Online</a>
                      </div>
    </div></div>
]]>
</Body>
<Summary>Page             added by                     Anna Sniadach                                                                   Icon                                                Instructors can...</Summary>
<Website>https://wiki.umbc.edu/pages/viewpage.action?pageId=41190111</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35537/guest@my.umbc.edu/0637e752428002792050915ae5c34f3f/api/pixel</TrackingUrl>
<Tag>faq</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?1786447565</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/1/original.png?1786447565</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/1/xxlarge.png?1786447565</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/1/xlarge.png?1786447565</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/images/avatars/group/1/large.png?1786447565</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/1/medium.png?1786447565</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/images/avatars/group/1/small.png?1786447565</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/1/xsmall.png?1786447565</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/1/xxsmall.png?1786447565</AvatarUrl>
<Sponsor>UMBC FAQ</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 12 Sep 2013 09:28:47 -0400</PostedAt>
</NewsItem>

</News>
