<?xml version="1.0"?>
<News hasArchived="true" page="8550" pageCount="10808" pageSize="10" timestamp="Sun, 13 Sep 2026 08:36:34 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=recent&amp;page=8550">
<NewsItem contentIssues="false" id="110073" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110073">
<Title>Production by Susan McCully, Theatre, at Fringe NYC</Title>
<Body>
<![CDATA[
    <div class="html-content">Inexcusable Fantasies, written by Susan McCully, theatre, and directed by Eve Muson, theatre, will be part of this year’s New York City International Fringe Festival, Fringe NYC, program. Performances will take place Sunday, August 18 through Saturday, August 24. About Inexcusable Fantasies (GrrlParts.com): “Martha Stewart, motorcycles, and Grandma’s Oil of Olay jar. What do they have in common? They are just a few of the often hilarious obsessions Susan McCully visits in Inexcusable Fantasies a show about sexual politics, lust ‘over forty, cloning, eye replacement surgery, and the unmistakably erotic powers of Martha Stewart’s marzipan.” The production, starring Susan McCully and Rachel Hirshorn ’04, …</div>
]]>
</Body>
<Summary>Inexcusable Fantasies, written by Susan McCully, theatre, and directed by Eve Muson, theatre, will be part of this year’s New York City International Fringe Festival, Fringe NYC, program....</Summary>
<Website>https://news.umbc.edu/production-by-susan-mccully-theatre-to-perform-at-fringe-nyc/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110073/guest@my.umbc.edu/40efdfeb1fca1b977f2c9260c593f78e/api/pixel</TrackingUrl>
<Tag>arts-and-culture</Tag>
<Tag>cahss</Tag>
<Tag>theatre</Tag>
<Tag>visualarts</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>Wed, 31 Jul 2013 14:41:49 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="33409" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33409">
<Title>Preventing tab-close data loss in JS Web Apps</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Often, when you’re building a JavaScript web application, you want to warn the user about any pending Ajax requests before they close the window.</p>
    
    <p>Perhaps you’ve updated the UI before sending an Ajax request to the server, or perhaps you’re making long running background request. Either way you want to warn the user that, if they continue, they may lose data.</p>
    
    <p>Browsers don’t offer an API to automatically block closing tabs (which would be open to abuse), but they do have a rather archaic API to specify a tab close prompt, <code>window.onbeforeunload</code>. </p>
    
    <pre><code>window.onbeforeunload = function(){&#x000A;       return "Don't leave me!";&#x000A;    };&#x000A;    </code></pre>
    
    <p>As you can see, this isn’t a normal event. You can only have one listener, and it should return a string that is ultimately displayed to the client. </p>
    
    <p>jQuery has a undocumented <code>active</code> property, a integer representing the amount of co-current Ajax requests. We can check this to easily know if we need to notify the user.</p>
    
    <pre><code>window.onbeforeunload = function(){&#x000A;       if (jQuery.active) return 'I will never let go!';&#x000A;    };&#x000A;    </code></pre>
    
    <p>However, this will notify the user for non-destructive Ajax requests, such as GET ones. To customize which request types we want to check, we’ll need to create our own counter, <code>activeTransforms</code>.</p>
    
    <pre><code>(function(){&#x000A;      var $ = jQuery;&#x000A;    &#x000A;      var TRANSFORM_TYPES = ['PUT', 'POST', 'DELETE'];&#x000A;    &#x000A;      $.activeTransforms = 0;&#x000A;    &#x000A;      $(document).ajaxSend(function(e, xhr, settings) {&#x000A;        if (TRANSFORM_TYPES.indexOf(settings.type) &lt; 0) return;&#x000A;        return $.activeTransforms += 1;&#x000A;      });&#x000A;    &#x000A;      $(document).ajaxComplete(function(e, xhr, settings) {&#x000A;        if (TRANSFORM_TYPES.indexOf(settings.type) &lt; 0) return;&#x000A;        return $.activeTransforms -= 1;&#x000A;      });&#x000A;    &#x000A;      window.onbeforeunload || (window.onbeforeunload = function() {&#x000A;        if ($.activeTransforms) {&#x000A;          return 'There are some pending network requests which\n' +&#x000A;                     'means closing the page may lose unsaved data.';&#x000A;        }&#x000A;      });&#x000A;    }).call(this);&#x000A;    </code></pre>
    
    <p>See the <a href="https://gist.github.com/maccman/5674933#file-jquery-onclose-coffee" rel="nofollow external" class="bo">full code</a> (including CoffeeScript).</p>
    
    <hr>
    
    <p><em>Josh Peek makes the <a href="https://twitter.com/joshpeek/status/362669368183754753" rel="nofollow external" class="bo">good point</a> that adding an unload handler can mess with page caching.</em></p>
    </div>
]]>
</Body>
<Summary>Often, when you’re building a JavaScript web application, you want to warn the user about any pending Ajax requests before they close the window.    Perhaps you’ve updated the UI before sending an...</Summary>
<Website>http://blog.alexmaccaw.com/jswebapps-onbeforeunload</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33409/guest@my.umbc.edu/e60f5f80642895078217aa29c7c92689/api/pixel</TrackingUrl>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 31 Jul 2013 13:55:00 -0400</PostedAt>
<EditAt>Wed, 31 Jul 2013 13:55:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="110074" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110074">
<Title>Kimberly Moffitt, American Studies, guest hosts The Marc Steiner Show</Title>
<Body>
<![CDATA[
    <div class="html-content">Dr. Kimberly Moffitt, Professor of American Studies, was the guest host for The Marc Steiner Show’s “Weekly News Roundup,” which aired on Friday, July 26. Dr. Moffitt was joined by panelists E.R. Shipp, Pulitzer Prize-winning columnist and Journo-in-Residence at Morgan State University, and Dr. Avis A. Jones-DeWeever, President and CEO of Incite Unlimited, LLC., to discuss the decline in the latest Maryland State Assessment scores and the existing achievement gaps based on race. Panelists and callers also commented on the repercussions of the Supreme Court’s recent ruling on voting rights and the Justice Department’s role in pursuing legal action against …</div>
]]>
</Body>
<Summary>Dr. Kimberly Moffitt, Professor of American Studies, was the guest host for The Marc Steiner Show’s “Weekly News Roundup,” which aired on Friday, July 26. Dr. Moffitt was joined by panelists E.R....</Summary>
<Website>https://news.umbc.edu/kimberly-moffitt-american-studies-guest-hosts-marc-steiner-show/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110074/guest@my.umbc.edu/5417017425626de46aa45f361e99bae0/api/pixel</TrackingUrl>
<Tag>americanstudies</Tag>
<Tag>cahss</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>Wed, 31 Jul 2013 13:03:56 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33405" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33405">
<Title>Facebook Shares Touch a Symbolic Threshold</Title>
<Body>
<![CDATA[
    <div class="html-content">Shares have risen about 34 percent since the company announced a surprisingly strong earnings report last week.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Ffacebook-briefly-trades-above-ipo-price.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Shares+Touch+a+Symbolic+Threshold" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Ffacebook-briefly-trades-above-ipo-price.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Shares+Touch+a+Symbolic+Threshold" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Ffacebook-briefly-trades-above-ipo-price.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Shares+Touch+a+Symbolic+Threshold" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Ffacebook-briefly-trades-above-ipo-price.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Shares+Touch+a+Symbolic+Threshold" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Ffacebook-briefly-trades-above-ipo-price.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Shares+Touch+a+Symbolic+Threshold" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>Shares have risen about 34 percent since the company announced a surprisingly strong earnings report last week.     </Summary>
<Website>http://www.nytimes.com/2013/08/01/technology/facebook-briefly-trades-above-ipo-price.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33405/guest@my.umbc.edu/7422b693263649aa618d93bc39e7f08f/api/pixel</TrackingUrl>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>initial-public-offerings</Tag>
<Tag>new</Tag>
<Tag>stocks-and-bonds</Tag>
<Tag>technology</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 31 Jul 2013 12:52:31 -0400</PostedAt>
<EditAt>Wed, 31 Jul 2013 20:33:35 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="33403" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33403">
<Title>Contribution from the Maryland Phi Kappa Phi Foundation</Title>
<Body>
<![CDATA[
    <div class="html-content">Chapter 22BC of the Honor Society of Phi Kappa Phi is pleased to announce that this past spring we received $114,000 from the Maryland Phi Kappa Phi Foundation to establish the Phi Kappa Phi Chapter 22-UMBC Endowment.  The purpose of the endowment is to provide awards, in the form of scholarships, fellowships, and grants in recognition of academic excellence by student members of Phi Kappa Phi Chapter 22UMBC. Students from UMBC and from the professional schools of the downtown UM campus will be eligible for these awards.  We are grateful to the Foundation for its generous support, which has greatly benefitted our chapter’s members in the past. The Foundation has now been dissolved, but through this contribution its legacy will continue.  It is expected that funds will be available for awards in the 2015 fiscal year, beginning on July 1st 2014. The Foundation also made contributions of the same size to the Phi Kappa Phi chapters at UMCP and UMUC.</div>
]]>
</Body>
<Summary>Chapter 22BC of the Honor Society of Phi Kappa Phi is pleased to announce that this past spring we received $114,000 from the Maryland Phi Kappa Phi Foundation to establish the Phi Kappa Phi...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33403/guest@my.umbc.edu/1826a5615663faf9655209c224746b7a/api/pixel</TrackingUrl>
<Group token="phikappaphi">The Honor Society of  Phi Kappa Phi </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/phikappaphi</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/xsmall.png?1285100670</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/original.png?1285100670</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/xxlarge.png?1285100670</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/xlarge.png?1285100670</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/large.png?1285100670</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/medium.png?1285100670</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/small.png?1285100670</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/xsmall.png?1285100670</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/083/acb5d1120b8a0b8d3d97905ba9a72dc4/xxsmall.png?1285100670</AvatarUrl>
<Sponsor>The Honor Society of  Phi Kappa Phi</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 31 Jul 2013 12:43:47 -0400</PostedAt>
<EditAt>Wed, 31 Jul 2013 12:44:07 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="33401" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33401">
<Title>League of Legends: Collegiate Competitions.</Title>
<Body>
<![CDATA[
    <div class="html-content">Recently the League of Legends Collegiate program contacted us asking us to participate in their worldwide collegiate tournaments.<div><br></div>
    <div>What this means is UMBC needs an official team. Tryouts and such will be held in the form of a tournament (most likely). Look out for more info as the officers discuss!</div>
    </div>
]]>
</Body>
<Summary>Recently the League of Legends Collegiate program contacted us asking us to participate in their worldwide collegiate tournaments.    What this means is UMBC needs an official team. Tryouts and...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33401/guest@my.umbc.edu/d4f8b0417bb706013421bd5839a16619/api/pixel</TrackingUrl>
<Group token="retired-509">UMBC eSports/Competitive Online Gaming</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-509</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xsmall.png?1375365930</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/original.png?1375365930</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xxlarge.png?1375365930</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xlarge.png?1375365930</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/large.png?1375365930</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/medium.png?1375365930</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/small.png?1375365930</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xsmall.png?1375365930</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xxsmall.png?1375365930</AvatarUrl>
<Sponsor>UMBC E-sports/Cooperative Online Gaming Club</Sponsor>
<PawCount>0</PawCount>
<CommentCount>16</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 31 Jul 2013 12:35:40 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33400" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33400">
<Title>New Logo</Title>
<Body>
<![CDATA[
    <div class="html-content">We have a new logo! If you have some color suggestions for the shirt let us know.</div>
]]>
</Body>
<Summary>We have a new logo! If you have some color suggestions for the shirt let us know.</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33400/guest@my.umbc.edu/9893ece29c9ab2e205f36561e7b45f78/api/pixel</TrackingUrl>
<Group token="retired-509">UMBC eSports/Competitive Online Gaming</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-509</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xsmall.png?1375365930</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/original.png?1375365930</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xxlarge.png?1375365930</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xlarge.png?1375365930</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/large.png?1375365930</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/medium.png?1375365930</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/small.png?1375365930</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xsmall.png?1375365930</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/509/8cdeb355060bea983bce7e4d58d7a666/xxsmall.png?1375365930</AvatarUrl>
<Sponsor>UMBC E-sports/Cooperative Online Gaming Club</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/033/400/a19378c33196a8e3f355d78b073a832b/xxlarge.jpg?1375288389</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/033/400/a19378c33196a8e3f355d78b073a832b/xlarge.jpg?1375288389</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/033/400/a19378c33196a8e3f355d78b073a832b/large.jpg?1375288389</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/033/400/a19378c33196a8e3f355d78b073a832b/medium.jpg?1375288389</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/033/400/a19378c33196a8e3f355d78b073a832b/small.jpg?1375288389</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/033/400/a19378c33196a8e3f355d78b073a832b/xsmall.jpg?1375288389</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/033/400/a19378c33196a8e3f355d78b073a832b/xxsmall.jpg?1375288389</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 31 Jul 2013 12:33:55 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110075" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110075">
<Title>Ed Orser, American Studies, in The Baltimore Sun</Title>
<Body>
<![CDATA[
    <div class="html-content">Catonsville is seeing a change in its demographics – and this is nothing new, according to UMBC American Studies professor, Ed Orser. In recent years, the 21228 zip code has seen a noticeable influx of younger single families looking to plant their roots in the quaint Baltimore suburb, leading to a revival in the housing market and increased enrollment in local schools, the article cites. This isn’t the first time Catonsville has seen a demographic shift that brings a surge of school-age children to the area. The current boost is similar to the one from a century ago, Orser said. …</div>
]]>
</Body>
<Summary>Catonsville is seeing a change in its demographics – and this is nothing new, according to UMBC American Studies professor, Ed Orser. In recent years, the 21228 zip code has seen a noticeable...</Summary>
<Website>https://news.umbc.edu/ed-orser-american-studies-in-the-baltimore-sun/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110075/guest@my.umbc.edu/b5246d39d1e624809c8a01dc146166fd/api/pixel</TrackingUrl>
<Tag>americanstudies</Tag>
<Tag>cahss</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>Wed, 31 Jul 2013 12:32:43 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="33399" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33399">
<Title>Microsoft talks IE11 dev tools</Title>
<Body>
<![CDATA[
    <div class="html-content">Designed for productivity and varied setups, to boost browser-based iteration<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fmicrosoft-talks-ie11-dev-tools-132926&amp;t=Microsoft+talks+IE11+dev+tools" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fmicrosoft-talks-ie11-dev-tools-132926&amp;t=Microsoft+talks+IE11+dev+tools" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fmicrosoft-talks-ie11-dev-tools-132926&amp;t=Microsoft+talks+IE11+dev+tools" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fmicrosoft-talks-ie11-dev-tools-132926&amp;t=Microsoft+talks+IE11+dev+tools" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.netmagazine.com%2Fnews%2Fmicrosoft-talks-ie11-dev-tools-132926&amp;t=Microsoft+talks+IE11+dev+tools" 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/172487590783/u/49/f/502346/c/32632/s/2f64b58c/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/172487590783/u/49/f/502346/c/32632/s/2f64b58c/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Designed for productivity and varied setups, to boost browser-based iteration      </Summary>
<Website>http://feedproxy.google.com/~r/net/topstories/~3/5-FTfc5_pFc/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33399/guest@my.umbc.edu/d955d431cde661cf33a4ae81da60b0d0/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>Wed, 31 Jul 2013 11:40:18 -0400</PostedAt>
<EditAt>Wed, 31 Jul 2013 11:40:18 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="33396" important="false" status="posted" url="https://my3.my.umbc.edu/posts/33396">
<Title>State of the Art: Chromecast, Simply and Cheaply, Flings Web Video to TVs</Title>
<Body>
<![CDATA[
    <div class="html-content">Using Wi-Fi, the Google Chromecast makes Internet material watchable on a television for $35. Repeat, $35.<div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Fpersonaltech%2Fchromecast-simply-and-cheaply-flings-web-video-to-tvs.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Chromecast%2C+Simply+and+Cheaply%2C+Flings+Web+Video+to+TVs" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Fpersonaltech%2Fchromecast-simply-and-cheaply-flings-web-video-to-tvs.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Chromecast%2C+Simply+and+Cheaply%2C+Flings+Web+Video+to+TVs" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Fpersonaltech%2Fchromecast-simply-and-cheaply-flings-web-video-to-tvs.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Chromecast%2C+Simply+and+Cheaply%2C+Flings+Web+Video+to+TVs" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Fpersonaltech%2Fchromecast-simply-and-cheaply-flings-web-video-to-tvs.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Chromecast%2C+Simply+and+Cheaply%2C+Flings+Web+Video+to+TVs" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F01%2Ftechnology%2Fpersonaltech%2Fchromecast-simply-and-cheaply-flings-web-video-to-tvs.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+Chromecast%2C+Simply+and+Cheaply%2C+Flings+Web+Video+to+TVs" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>Using Wi-Fi, the Google Chromecast makes Internet material watchable on a television for $35. Repeat, $35.     </Summary>
<Website>http://www.nytimes.com/2013/08/01/technology/personaltech/chromecast-simply-and-cheaply-flings-web-video-to-tvs.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/33396/guest@my.umbc.edu/2ad30eaedc066d91e838666b1f719997/api/pixel</TrackingUrl>
<Tag>amazon-com-inc-amzn-nasdaq</Tag>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>chrome-browser</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>netflix-inc-nflx-nasdaq</Tag>
<Tag>new</Tag>
<Tag>pandora-media-inc-p-nyse</Tag>
<Tag>technology</Tag>
<Tag>television</Tag>
<Tag>tivo-inc-tivo-nasdaq</Tag>
<Tag>wireless-communications</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>Wed, 31 Jul 2013 11:38:13 -0400</PostedAt>
</NewsItem>

</News>
