<?xml version="1.0"?>
<News hasArchived="true" page="7624" pageCount="10793" pageSize="10" timestamp="Sat, 05 Sep 2026 06:43:02 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7624&amp;range=2">
<NewsItem contentIssues="true" id="43524" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43524">
<Title>Algorithms and Data Structures</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>I assume you are a computer programmer. Perhaps you are a new student of computer science or maybe you are an experienced software engineer. Regardless of where you are on that spectrum, algorithms and data structures matter. Not just as theoretical concepts, but as building blocks used to create solutions to business problems.</p>
    
    <p>Sure, you may know how to use the C# <code>List</code> or <code>Stack</code> class, but do you understand what is going on under the covers? If not, are you really making the best decisions about which algorithms and data structures you are using?</p>
    
    <p>Meaningful understanding of algorithms and data structures starts with having a way to express and compare their relative costs.</p>
    
    <h2>Asymptotic Analysis</h2>
    
    <p>When we talk about measuring the cost or complexity of an algorithm, what we are really talking about is performing an analysis of the algorithm when the input sets are very large. Analyzing what happens as the number of inputs becomes very large is referred to as asymptotic analysis. How does the complexity of the algorithm change when applied to ten, or one thousand, or ten million items? If an algorithm runs in five milliseconds with one thousand items, what can we say about what will happen when it runs with one million? Will it take five seconds or five years? Wouldn't you rather figure this out before your customer?</p>
    
    <p>This stuff matters!</p>
    
    <h3>Rate of Growth</h3>
    
    <p>Rate of growth describes how an algorithm's complexity changes as the input size grows. This is commonly represented using Big-O notation. Big-O notation uses a capital O ("order") and a formula that expresses the complexity of the algorithm. The formula may have a variable, n, which represents the size of the input. The following are some common order functions we will see in this book but this list is by no means complete.</p>
    <h4>Constant - O(1)</h4>
    <p>An O(1) algorithm is one whose complexity is constant regardless of how large the input size is. The "1" does not mean that there is only one operation or that the operation takes a small amount of time. It might take one microsecond or it might take one hour. The point is that the size of the input does not influence the time the operation takes.
    </p>
    
    <pre>public int GetCount(int[] items)&#x000A;    {&#x000A;    	return items.Length;&#x000A;    }&#x000A;    </pre>
    <h4>Linear - O(n)</h4>
    <p>An O(n) algorithm is one whose complexity grows linearly with the size of the input. It is reasonable to expect that if an input size of one takes five milliseconds, an input with one thousand items will take five seconds.</p>
    
    <p>You can often recognize an O(n) algorithm by looking for a looping mechanism that accesses each member.</p>
    
    <pre>public long GetSum(int[] items)&#x000A;    {&#x000A;    	long sum = 0;&#x000A;    	foreach (int i in items)&#x000A;    	{&#x000A;    		sum += i;&#x000A;    	}&#x000A;    &#x000A;    	return sum;&#x000A;    }&#x000A;    </pre>
    <h4>Logarithmic - O(log n)</h4>
    <p>An O(log n) algorithm is one whose complexity is logarithmic to its size. Many divide and conquer algorithms fall into this bucket. The binary search tree <code>Contains</code> method implements an O(log n) algorithm.</p>
    <h4>Linearithmic - O(n log n)</h4>
    <p>A linearithmic algorithm, or loglinear, is an algorithm that has a complexity of O(n log n). Some divide and conquer algorithms fall into this bucket. We will see two examples when we look at merge sort and quick sort.</p>
    <h4>Quadratic - O(n^2)</h4>
    <p>An O(n^2) algorithm is one whose complexity is quadratic to its size. While not always avoidable, using a quadratic algorithm is a potential sign that you need to reconsider your algorithm or data structure choice. Quadratic algorithms do not scale well as the input size grows. For example, an array with 1000 integers would require 1,000,000 operations to complete. An input with one million items would take one trillion (1,000,000,000,000) operations. To put this into perspective, if each operation takes one millisecond to complete, an O(n^2) algorithm that receives an input of one million items will take nearly 32 years to complete. Making that algorithm 100 times faster would still take 84 days.
    </p>
    
    <p>We will see an example of a quadratic algorithm when we look at bubble sort.</p>
    
    <h3>Best, Average, and Worst Case</h3>
    
    <p>When we say an algorithm is O(n), what are we really saying? Are we saying that the algorithm is O(n) on average? Or are we describing the best or worst case scenario?</p>
    
    <p>We typically mean the worst case scenario unless the common case and worst case are vastly different. For example, we will see examples in this book where an algorithm is O(1) on average, but periodically becomes O(n) (see <code>ArrayList.Add</code>). In these cases I will describe the algorithm as O(1) on average and then explain when the complexity changes.</p>
    
    <p>The key point is that saying O(n) does not mean that it is always n operations. It might be less, but it should not be more.</p>
    
    <h3>What Are We Measuring?</h3>
    
    <p>When we are measuring algorithms and data structures, we are usually talking about one of two things: the amount of time the operation takes to complete (operational complexity), or the amount of resources (memory) an algorithm uses (resource complexity).</p>
    
    <p>An algorithm that runs ten times faster but uses ten times as much memory might be perfectly acceptable in a server environment with vast amounts of available memory, but may not be appropriate in an embedded environment where available memory is severely limited.</p>
    
    <p>In this book I will focus primarily on operational complexity, but in the Sorting Algorithms section we will see some examples of resource complexity.</p>
    
    <p>Some specific examples of things we might measure include:</p>
    
    <ul>
    	<li>Comparison operations (greater than, less than, equal to).</li>
    	<li>Assignments and data swapping.</li>
    	<li>Memory allocations.</li>
    </ul>
    
    <p>The context of the operation being performed will typically tell you what type of measurement is being made.</p>
    
    <p>For example, when discussing the complexity of an algorithm that searches for an item within a data structure, we are almost certainly talking about comparison operations. Search is generally a read-only operation so there should not be any need to perform assignments or allocate memory.</p>
    
    <p>However, when we are talking about data sorting it might be logical to assume that we could be talking about comparisons, assignments, or allocations. In cases where there may be ambiguity, I will indicate which type of measurement the complexity is actually referring to.</p>
    
    <h2>Next Up</h2>
    
    <p>This completes the first part about algorithms and data structures. Next up, we'll move on to the linked list. </p>
    </div>
]]>
</Body>
<Summary>I assume you are a computer programmer. Perhaps you are a new student of computer science or maybe you are an experienced software engineer. Regardless of where you are on that spectrum,...</Summary>
<Website>http://code.tutsplus.com/tutorials/algorithms-and-data-structures--cms-20437</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43524/guest@my.umbc.edu/12e5c36dfb1746dcf51da35be3739c7b/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>wed</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>Fri, 11 Apr 2014 15:00:11 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43521" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43521">
<Title>Round-Up: UMBC in the News, 4/11</Title>
<Body>
<![CDATA[
    <div class="html-content">One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of these amazing people, UMBC often finds itself “in the news,” so each week, we’ll be sharing with you a round-up … <a href="http://umbcalumni.wordpress.com/2014/04/11/round-up-umbc-in-the-news-411/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of these amazing people, UMBC often finds itself “in the news,” so each week, we’ll be...</Summary>
<Website>http://umbcalumni.wordpress.com/2014/04/11/round-up-umbc-in-the-news-411/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43521/guest@my.umbc.edu/6b39e0b61d092d72b5f8648a93cf0565/api/pixel</TrackingUrl>
<Tag>baltimore-jewish-times</Tag>
<Tag>city-paper</Tag>
<Tag>die-zeit</Tag>
<Tag>erle-ellis</Tag>
<Tag>lia-purpura</Tag>
<Tag>lynne-schaefer</Tag>
<Tag>news-and-updates</Tag>
<Tag>project-mah-jongg</Tag>
<Tag>the-baltimore-sun</Tag>
<Tag>the-business-officer</Tag>
<Tag>tim-nohe</Tag>
<Tag>umbc</Tag>
<Tag>umbc-chess-team</Tag>
<Tag>umbc-news</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Tag>wpr</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>Fri, 11 Apr 2014 14:30:30 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="106829" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106829">
<Title>Round-Up: UMBC in the News, 4/11</Title>
<Body>
<![CDATA[
    <div class="html-content">One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of …</div>
]]>
</Body>
<Summary>One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of …</Summary>
<Website>https://magazine.umbc.edu/round-up-umbc-in-the-news-411/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106829/guest@my.umbc.edu/44ceef365a5e136b8a6d406bfc98c89a/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Tag>baltimore-jewish-times</Tag>
<Tag>city-paper</Tag>
<Tag>die-zeit</Tag>
<Tag>erle-ellis</Tag>
<Tag>lia-purpura</Tag>
<Tag>lynne-schaefer</Tag>
<Tag>project-mah-jongg</Tag>
<Tag>the-baltimore-sun</Tag>
<Tag>the-business-officer</Tag>
<Tag>tim-nohe</Tag>
<Tag>umbc</Tag>
<Tag>umbc-chess-team</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Tag>wpr</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>Fri, 11 Apr 2014 14:30:30 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43532" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43532">
<Title>Sugar: More Rewarding than Cocaine?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2014/04/sugar2.jpg" width="300" height="168" style="max-width: 100%; height: auto;"></p>
    <p>Warm chocolate chip cookies…cold refreshing soda…could you give these up? </p>
    <p>Vermont mother, Eve Schaub, took the challenge and recently published a memoir about it titled <em><a href="http://eveschaub.com/" rel="nofollow external" class="bo">Year of No Sugar.</a> </em></p>
    <p>Eve and her family swore off added sugar for a year. “Added sugar” is not just something found in traditional sweets and soft drinks but is hidden in most processed foods including: ketchup, bread, pasta sauces, crackers etc. </p>
    <p>Why would Ms. Schaub do something so extreme? </p>
    <p>She was inspired by the studies of <a href="http://www.huffingtonpost.com/robert-lustig-md/sugar-toxic_b_2759564.html" rel="nofollow external" class="bo">Dr. Robert Lustig</a> who debunked the myth that “a calorie is a calorie.”</p>
    <p>He concluded in his study that sugar is more dangerous for health than any other form of calorie because of how the body processes it. He blames sugar consumption for the diabetes and obesity epidemic. </p>
    <p>Sugar is also highly addictive. One <a href="http://www.plosone.org/article/info:doi/10.1371/journal.pone.0000698" rel="nofollow external" class="bo">study</a> concludes that it is more rewarding than cocaine. This addictive quality leads to an increased likelihood of <a href="http://care.diabetesjournals.org/content/33/5/1128.full.pdf" rel="nofollow external" class="bo">depression</a> in consumers. </p>
    <p>So what happened when Ms. Schaub and her family swore off this addictive toxin? </p>
    <blockquote>
    <p>“I was happier, more energetic, and way less prone to sudden, debilitating attacks of I-feel-crappy…We felt healthier, it seemed like we got sick less, like we got better faster or got milder colds. My kids missed significantly less school.”</p>
    </blockquote>
    <p>Now, two years later, Ms. Schaub’s family has maintained a diet free from most added sugar.</p>
    <p>If they ever have desserts they are infrequent and homemade. Ms. Schaub attests that her palate has changed and that she has a more subtle appreciation for sweetness. </p>
    <p>Does all this talk of too much sugar leave a bad taste in your mouth?</p>
    </div>
]]>
</Body>
<Summary>Warm chocolate chip cookies…cold refreshing soda…could you give these up?    Vermont mother, Eve Schaub, took the challenge and recently published a memoir about it titled Year of No Sugar.    Eve...</Summary>
<Website>http://usdemocrazy.net/sugar-more-rewarding-than-cocaine/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43532/guest@my.umbc.edu/efd80d2e9f00d57484430ec056aca988/api/pixel</TrackingUrl>
<Tag>addictive</Tag>
<Tag>cocaine</Tag>
<Tag>current</Tag>
<Tag>democracy</Tag>
<Tag>depression</Tag>
<Tag>health</Tag>
<Tag>news</Tag>
<Tag>nutrition</Tag>
<Tag>politics</Tag>
<Tag>sugar</Tag>
<Tag>us</Tag>
<Tag>usdemocrazy</Tag>
<Group token="retired-12">USDemocrazy</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-12</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/original.jpg?1279120129</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/large.png?1279120129</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/medium.png?1279120129</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/small.png?1279120129</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxsmall.png?1279120129</AvatarUrl>
<Sponsor>USDemocrazy</Sponsor>
<PawCount>23</PawCount>
<CommentCount>9</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 11 Apr 2014 14:09:16 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43533" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43533">
<Title>What&#8217;s Unforgiveable?</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2014/04/memorial1.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2014/04/memorial1-300x199.jpg" width="300" height="199" style="max-width: 100%; height: auto;"></a></p>
    <p>Could you forgive someone who tried to kill you?</p>
    <p>For Brett Hurt, the sixteen-year-old survivor of  a <a href="http://www.npr.org/2014/04/09/301028002/before-classes-even-begin-mass-stabbing-leaves-school-reeling" rel="nofollow external" class="bo">school stabbing attack</a>  on Wednesday, the answer is yes. About his attacker, he tells reporters: </p>
    <blockquote>
    <p><a href="http://www.wtae.com/news/franklin-regional-high-school-stabbing-victim-brett-hurt-says-friend-gracey-evans-helped-save-his-life/25413818" rel="nofollow external" class="bo">I just hope that one day I can forgive him, and everyone else who got hurt can forgive him. Most of all, he needs to forgive himself.</a></p>
    </blockquote>
    <p>Not everyone agrees with this perspective. In response to the Boston bombings, Huffington Post writer Elad Nahorai claimed in his blog post “<a href="http://www.huffingtonpost.com/elad-nehorai/stop-forgiving-the-boston-bombers_b_3134817.html" rel="nofollow external" class="bo">Stop Forgiving the Boston Bombers</a>,” </p>
    <blockquote>
    <p>What matters is that we realize that when we excuse the acts of killers, we in effect, justify those killings. Whether we mean to or not.</p>
    </blockquote>
    <p>Internationally, the topic of forgiveness is being discussed in conjunction with the 20th anniversary of the horrible 1994 <a href="http://www.bbc.com/news/world-africa-26875506" rel="nofollow external" class="bo">genocide in Rwanda</a>. Survivor Alice lost both her baby and her right hand to a machete-wielding militant, but still declares that </p>
    <blockquote>
    <p>Forgiveness is possible.</p>
    </blockquote>
    <p>What’s more remarkable? Alice is now <a href="http://www.csmonitor.com/World/Latest-News-Wires/2014/0406/Rwandans-find-friendship-healing-in-forgiveness" rel="nofollow external" class="bo">friends</a> with her attacker. </p>
    </div>
]]>
</Body>
<Summary>Could you forgive someone who tried to kill you?   For Brett Hurt, the sixteen-year-old survivor of  a school stabbing attack  on Wednesday, the answer is yes. About his attacker, he tells...</Summary>
<Website>http://usdemocrazy.net/whats-unforgiveable/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43533/guest@my.umbc.edu/38f8941d7e26a9e106df0823a20103c2/api/pixel</TrackingUrl>
<Tag>current</Tag>
<Tag>democracy</Tag>
<Tag>news</Tag>
<Tag>politics</Tag>
<Tag>uncategorized</Tag>
<Tag>us</Tag>
<Tag>usdemocrazy</Tag>
<Group token="retired-12">USDemocrazy</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-12</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/original.jpg?1279120129</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xlarge.png?1279120129</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/large.png?1279120129</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/medium.png?1279120129</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/small.png?1279120129</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xsmall.png?1279120129</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/012/f0935e4cd5920aa6c7c996a5ee53a70f/xxsmall.png?1279120129</AvatarUrl>
<Sponsor>USDemocrazy</Sponsor>
<PawCount>15</PawCount>
<CommentCount>34</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 11 Apr 2014 14:02:41 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43517" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43517">
<Title>DealBook: Alibaba to Acquire Chinese Mapping Firm as Buying Spree Continues</Title>
<Body>
<![CDATA[
    <div class="html-content">AutoNavi Holdings, which holds a rare mapping license from the Chinese government, has agreed to sell itself to the Alibaba Group in a deal that values it at $1.5 billion.<br><br><br><a href="http://da.feedsportal.com/r/194480040309/u/0/f/640387/c/34625/s/3942e915/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/194480040309/u/0/f/640387/c/34625/s/3942e915/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/194480040309/u/0/f/640387/c/34625/s/3942e915/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/194480040309/u/0/f/640387/c/34625/s/3942e915/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/194480040309/u/0/f/640387/c/34625/s/3942e915/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/194480040309/u/0/f/640387/c/34625/s/3942e915/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/194480040309/u/0/f/640387/c/34625/s/3942e915/sc/21/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/194480040309/u/0/f/640387/c/34625/s/3942e915/sc/21/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>AutoNavi Holdings, which holds a rare mapping license from the Chinese government, has agreed to sell itself to the Alibaba Group in a deal that values it at $1.5 billion.</Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/3942e915/sc/21/l/0Ldealbook0Bnytimes0N0C20A140C0A40C110Calibaba0Econtinuing0Ebuying0Espree0Eto0Eacquire0Echinese0Emapping0Efirm0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43517/guest@my.umbc.edu/31f9c201daebe1fc7d1a51ac9aab4348/api/pixel</TrackingUrl>
<Tag>alibaba-com</Tag>
<Tag>autonavi-holdings-ltd</Tag>
<Tag>autonavi-holdings-ltd-amap-nasdaq</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>e-commerce</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>navigation</Tag>
<Tag>new</Tag>
<Tag>retail-leisure</Tag>
<Tag>technology</Tag>
<Tag>top-headline-2</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>Fri, 11 Apr 2014 13:44:45 -0400</PostedAt>
<EditAt>Fri, 11 Apr 2014 19:03:45 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="122694" important="false" status="posted" url="https://my3.my.umbc.edu/posts/122694">
<Title>UMBC Recognized for Value and Smart Students</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div>
    <div>
    <p>Recent reports have recognized UMBC as a top school for “smart students” and a university that provides students with strong “ROI,” relating tuition and other costs to alumni salaries.</p>
    </div>
    </div>
    <div>
    <div>
    <span>Using student-reported data from College Prowler, <em>Business Insider</em> ranked UMBC in the top ten on a list of </span><a href="http://www.businessinsider.com/public-colleges-with-smartest-students-2014-3" rel="nofollow external" class="bo">Public Colleges with the Smartest Students</a><span>. A student review of UMBC on </span><a href="http://colleges.niche.com/university-of-maryland----baltimore-county/" rel="nofollow external" class="bo">College Prowler</a><span> describes, “UMBC is a great university. Its diversity, high-quality education, and leadership opportunities make it a place where everyone can shine.” The <em>Business Insider</em> story generated notable online interest, including over </span><span>15,000 views through <a href="https://www.facebook.com/umbcpage" rel="nofollow external" class="bo">UMBC’s Facebook page.</a> </span>
    </div>
    </div>
    <div>
    <div>
    <p><span>In the Payscale.com </span><a href="http://www.payscale.com/college-roi/full-list" rel="nofollow external" class="bo">College ROI report</a>, UMBC ranked in the top 10% of <span>1,310 colleges and universities measured — one of the highest rankings among universities in Maryland.</span></p>
    </div>
    </div>
    </div>
]]>
</Body>
<Summary>Recent reports have recognized UMBC as a top school for “smart students” and a university that provides students with strong “ROI,” relating tuition and other costs to alumni salaries....</Summary>
<Website>https://umbc.edu/stories/umbc-recognized-for-value-and-smart-students/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/122694/guest@my.umbc.edu/f5ad32c743ce3859c74ccedb7077c0e9/api/pixel</TrackingUrl>
<Tag>community</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>Fri, 11 Apr 2014 13:44:37 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109747" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109747">
<Title>Judah Ronch, Erickson School, in The Baltimore Sun</Title>
<Body>
<![CDATA[
    <div class="html-content">An article published April 9 in The Baltimore Sun explores how Columbia resident Shirley Johannesen Levine has entertained audiences around the country with her puppetry skills and her company Puppet Dance Productions, with a focus on her recent trip to the Ellicott City Senior Center. Erickson School Dean Judah Ronch was interviewed for the article and said productions such as Johannesen’s not only provide entertainment for elders, but they can support wellness. “At any age, interaction is key to a sense of engagement and meaning of life,” Ronch said. He added interactive activities such as puppet shows can promote autonomy and self-esteem. …</div>
]]>
</Body>
<Summary>An article published April 9 in The Baltimore Sun explores how Columbia resident Shirley Johannesen Levine has entertained audiences around the country with her puppetry skills and her company...</Summary>
<Website>https://news.umbc.edu/judah-ronch-erickson-school-in-the-baltimore-sun/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109747/guest@my.umbc.edu/6c81d720633c8508a32ed4f33578245f/api/pixel</TrackingUrl>
<Tag>ericksonschool</Tag>
<Tag>policy-and-society</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 11 Apr 2014 13:25:04 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="43515" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43515">
<Title>4 Student Life Intern positions available for 2014-2015</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div><div>
    <div>
    <div>Student Life is hiring 4 interns for the 2014 - 2015 school year. </div>
    <div><br></div>
    <div>- 1 Service Intern<br>- 1 Civic Engagement &amp; Leadership Intern<br>- 2 Social Media/Video/Photography Intern<br>
    </div>
    <div><br></div>Learn more about the 4 positions here:<br><a href="http://my.umbc.edu/groups/lc/discussions/11266" rel="nofollow external" class="bo">http://my.umbc.edu/groups/lc/discussions/11266</a><br><br>
    </div>Find the application:<br><a href="https://docs.google.com/a/umbc.edu/forms/d/10nIOQOkGosfUlXdzOr1_qywskI1yaxJqH7RLypO-F10/viewform" rel="nofollow external" class="bo">https://docs.google.com/a/umbc.edu/forms/d/10nIOQOkGosfUlXdzOr1_qywskI1yaxJqH7RLypO-F10/viewform</a><br><br>
    </div></div>
    <br><strong>Applications are due by Friday, April 18, 2014 at 11:59pm</strong>
    </div>
]]>
</Body>
<Summary>Student Life is hiring 4 interns for the 2014 - 2015 school year.      - 1 Service Intern - 1 Civic Engagement &amp; Leadership Intern - 2 Social Media/Video/Photography Intern     Learn more...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43515/guest@my.umbc.edu/ac8935671c111eef756012a7d6d4ef22/api/pixel</TrackingUrl>
<Group token="retired-769">UMBC Student Organizations </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-769</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xsmall.png?1383677072</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/original.jpg?1383677072</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xxlarge.png?1383677072</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xlarge.png?1383677072</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/large.png?1383677072</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/medium.png?1383677072</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/small.png?1383677072</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xsmall.png?1383677072</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/769/c1de2111b16e6b21b794451fe54ef86f/xxsmall.png?1383677072</AvatarUrl>
<Sponsor>UMBC Student Organizations</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 11 Apr 2014 13:22:53 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109748" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109748">
<Title>Lia Purpura, English, in City Paper</Title>
<Body>
<![CDATA[
    <div class="html-content">Lia Purpura, English writer in residence, was featured in a Q&amp;A in City Paper about her participation in Baltimore’s CityLit Festival and commented on the creative, artistic community at UMBC. “It’s a completely vibrant, alive place and diverse in every possible way—students from all over the world, of all ages and backgrounds,” Purpura said. “I don’t think I’ve ever had more rigorous or engaged discussions on complex issues with undergraduate classes. My students are curious, brave, unselfconsciously creative, eager to learn, prepared to discuss.” Purpura is reading at CityLit with colleagues Michael Fallon and Holly Sneeringer, along with three UMBC English majors …</div>
]]>
</Body>
<Summary>Lia Purpura, English writer in residence, was featured in a Q&amp;A in City Paper about her participation in Baltimore’s CityLit Festival and commented on the creative, artistic community at UMBC....</Summary>
<Website>https://news.umbc.edu/lia-purpura-english-in-city-paper/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109748/guest@my.umbc.edu/f38b04f3f3317e31ebbea227254983d0/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</Tag>
<Tag>english</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 11 Apr 2014 13:22:41 -0400</PostedAt>
</NewsItem>

</News>
