<?xml version="1.0"?>
<News hasArchived="true" page="7814" pageCount="10770" pageSize="10" timestamp="Wed, 26 Aug 2026 12:21:10 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7814">
<NewsItem contentIssues="false" id="41340" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41340">
<Title>Multiple Simultaneous Ajax Requests (with one callback) in jQuery</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Let's say there is a feature on your website that only gets used 5% of the time. That feature requires some HTML, CSS, and JavaScript to work. So you decide that instead of having that HTML, CSS, and JavaScript on the page directly, you're going to Ajax that stuff in when the feature is about to be used. </p>
    <p>We'll need to make three Ajax requests. Since we don't want to show anything to the user until the feature is ready to go (plus they all kinda rely on each other to work right) we need to wait for all three of them to be complete before proceeding.</p>
    <p>What's the best way to do that?</p>
    <p></p>
    <p>Ajax calls in jQuery provide callbacks:</p>
    <pre><code>$.ajax({&#x000A;      statusCode: {&#x000A;        url: "/feature",&#x000A;        success: function() {&#x000A;          // Ajax success&#x000A;        }&#x000A;      }&#x000A;    });</code></pre>
    <p>Or the "Deferred" way, this time using a shorthand <code>$.get()</code> method:</p>
    <pre><code>$.get("/feature/").done(function() {&#x000A;      // Ajax success&#x000A;    });</code></pre>
    <p>But we have three Ajax requests we're needing to perform, and we want to wait for all three of them to finish before doing anything, so it could get pretty gnarly in callback land:</p>
    <pre><code>// Get the HTML&#x000A;    $.get("/feature/", function(html) {&#x000A;    &#x000A;      // Get the CSS&#x000A;      $.get("/assets/feature.css", function(css) {&#x000A;        &#x000A;        // Get the JavaScript&#x000A;        $.getScript("/assets/feature.js", function() {&#x000A;    &#x000A;           // All is ready now, so...&#x000A;    &#x000A;           // Add CSS to page&#x000A;           $("&lt;style /&gt;").html(css).appendTo("head");&#x000A;    &#x000A;           // Add HTML to page&#x000A;           $("body").append(html);&#x000A;    &#x000A;        });&#x000A;    &#x000A;      });&#x000A;    &#x000A;    });</code></pre>
    <p>This successfully waits until everything is ready before adding anything to the page. So by the time the user sees anything, it's good to go. Perhaps that makes some of you feel nauseated, but I've done things that way before. At least it makes sense and works. <strong>The problem?</strong> It's slow.</p>
    <p>One request ... wait to be done ... another request ... wait to be done ... another request ... wait to be done ... go.</p>
    <p>It would be faster if we could do:</p>
    <p>All three requests in parallel ... wait for all three to be done ... go.</p>
    <p>We can use a bit of Deferred / Promises action to help here. I'm sure this is some JavaScript 101 stuff to some of you but this kind of thing eluded me for a long time and more complex Promises stuff still does.</p>
    <p>In our simple use case, we can use jQuery's <code>$.when()</code> method, which takes a list of these "Deferred" objects (All jQuery Ajax methods return Deferred objects) and then provides a single callback.</p>
    <pre><code>$.when(&#x000A;    &#x000A;      // Deferred object (probably Ajax request),&#x000A;    &#x000A;      // Deferred object (probably Ajax request),&#x000A;    &#x000A;      // Deferred object (probably Ajax request)&#x000A;    &#x000A;    ).then(function() {&#x000A;    &#x000A;      // All have been resolved (or rejected), do your thing&#x000A;    &#x000A;    });</code></pre>
    <p>So our callback-hell can be rewritten like:</p>
    <pre><code>$.when(&#x000A;      // Get the HTML&#x000A;      $.get("/feature/", function(html) {&#x000A;        globalStore.html = html;&#x000A;      }),&#x000A;    &#x000A;      // Get the CSS&#x000A;      $.get("/assets/feature.css", function(css) {&#x000A;        globalStore.css = css;&#x000A;      }),&#x000A;    &#x000A;      // Get the JS&#x000A;      $.getScript("/assets/feature.js")&#x000A;    &#x000A;    ).then(function() {&#x000A;    &#x000A;      // All is ready now, so...&#x000A;    &#x000A;      // Add CSS to page&#x000A;      $("&lt;style /&gt;").html(globalStore.css).appendTo("head");&#x000A;    &#x000A;      // Add HTML to page&#x000A;      $("body").append(globalStore.html);&#x000A;    &#x000A;    });</code></pre>
    <h3>Another use case: mustard cutting</h3>
    <p>My use-case example above is a 5% feature. Keep the page lighter for the 95% of users who don't use the feature, and have it be a relatively quick add-on for those that do. </p>
    <p>Another situation might be a cut-the-mustard situation where you add in additional features or content to a page in certain situations, as you decide. Perhaps do a <code>matchMedia</code> test on some media queries and determine the device's screen and capabilities are such that you're going to include some extra modules. Cool, do it up with some parallel Ajax calls!</p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/multiple-simultaneous-ajax-requests-one-callback-jquery/" rel="nofollow external" class="bo">Multiple Simultaneous Ajax Requests (with one callback) in jQuery</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>Let's say there is a feature on your website that only gets used 5% of the time. That feature requires some HTML, CSS, and JavaScript to work. So you decide that instead of having that HTML, CSS,...</Summary>
<Website>http://css-tricks.com/multiple-simultaneous-ajax-requests-one-callback-jquery/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41340/guest@my.umbc.edu/7135ebadc25cd5234fc2e02370bf0b79/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</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, 13 Feb 2014 16:34:17 -0500</PostedAt>
<EditAt>Thu, 13 Feb 2014 16:34:17 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41339" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41339">
<Title>Deadly Dilemmas</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://usdemocrazy.net/wp-content/uploads/2014/02/Kal-sun-cartoon-3-17-13print.jpg" rel="nofollow external" class="bo"><img alt="" src="http://usdemocrazy.net/wp-content/uploads/2014/02/Kal-sun-cartoon-3-17-13print-1024x745.jpg" width="553" height="402" style="max-width: 100%; height: auto;"></a></p>
    <p>Is the death penalty slowly dying?</p>
    <p>The United States is one of a <a href="http://www.washingtonpost.com/blogs/worldviews/files/2013/04/Amnesty-map-full.jpg" rel="nofollow external" class="bo">dwindling number of nations</a> that stills executes its citizens (thirty nine individuals in 2013). That job has recently gotten harder.</p>
    <p>Since the death penalty was reinstated in 1976, the US has used a cocktail of three lethal drugs as its preferred method of execution.</p>
    <p>However, since the Danish manufacturer of one of these drugs declared that it would <a href="http://online.wsj.com/news/articles/SB10001424052702304584004576419092675627536?mg=reno64-wsj&amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702304584004576419092675627536.html" rel="nofollow external" class="bo">no longer sell their product</a> to US prisons, states have been scrambling for alternatives. </p>
    <p>The Missouri State Department of Corrections chose to substitute another drug, compounded pentobarbital, but a Federal judge blocked the pharmaceutical company’s attempt to supply the drug. The lawsuit declared that execution by compounded pentobarbital would cause  </p>
    <blockquote>
    <p>“<a href="http://www.theguardian.com/world/2014/feb/13/lethal-injection-drug-blocked-by-judge" rel="nofollow external" class="bo">severe, unnecessary, lingering and ultimately inhumane pain.</a>”</p>
    </blockquote>
    <p>Faced with the same problem, Virginia attempted to make death by electric chair the default method of execution under state law. <a href="http://www.washingtonpost.com/local/virginia-politics/virginia-electric-chair-bill-dies-for-the-year-in-state-senate/2014/02/10/ed6d1468-9260-11e3-b227-12a45d109e03_story.html" rel="nofollow external" class="bo">The bill failed earlier this week.</a></p>
    <p>Finally, some states have abolished the death penalty altogether. Maryland outlawed the punishment <a href="http://www.reuters.com/article/2013/05/02/us-usa-maryland-deathpenalty-idUSBRE9410TQ20130502" rel="nofollow external" class="bo">last May</a>, making it the eighteenth state to do so. Washington declared a state moratorium on <a href="http://www.npr.org/blogs/thetwo-way/2014/02/11/275350867/washington-governor-declares-moratorium-on-death-penalty" rel="nofollow external" class="bo">Tuesday</a>.</p>
    <p>The death penalty inspires passion on both sides of the aisle, and with good cause.</p>
    <p>Join the debate, and tell us: is it every okay for the government to kills its own citizens? And if somebody is going to die, does it matter how it happens?  </p>
    </div>
]]>
</Body>
<Summary>Is the death penalty slowly dying?   The United States is one of a dwindling number of nations that stills executes its citizens (thirty nine individuals in 2013). That job has recently gotten...</Summary>
<Website>http://usdemocrazy.net/deadly-dilemmas/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41339/guest@my.umbc.edu/e58c8624478052144d65c375acbc2b98/api/pixel</TrackingUrl>
<Tag>current</Tag>
<Tag>democracy</Tag>
<Tag>news</Tag>
<Tag>politics</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>14</PawCount>
<CommentCount>4</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Feb 2014 16:28:24 -0500</PostedAt>
<EditAt>Thu, 13 Feb 2014 16:29:24 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41338" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41338">
<Title>UMBC is Smoke-free</Title>
<Tagline>Policy and enforcement</Tagline>
<Body>
<![CDATA[
    <div class="html-content">In compliance with USM standards, UMBC went smoke-free in July 2013. Since then, individuals who violate the policy have received warnings. Moving forward, individuals in violation of the smoke free policy will receive fines up to $75.<div><br></div>
    <div>Smoking areas have been designated on campus. Outside of these areas, no one is permitted to smoke on the UMBC campus.</div>
    <div><br></div>
    <div>For more information about this policy, click here:</div>
    <div><a href="http://smokefree.umbc.edu/policy-overview/">http://smokefree.umbc.edu/policy-overview/</a></div>
    </div>
]]>
</Body>
<Summary>In compliance with USM standards, UMBC went smoke-free in July 2013. Since then, individuals who violate the policy have received warnings. Moving forward, individuals in violation of the smoke...</Summary>
<Website>http://smokefree.umbc.edu/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41338/guest@my.umbc.edu/ef98d41027260d1465efdafd8d059f02/api/pixel</TrackingUrl>
<Group token="ocss">Commuter Connections </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/ocss</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/xsmall.png?1770828767</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/original.png?1770828767</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/xxlarge.png?1770828767</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/xlarge.png?1770828767</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/large.png?1770828767</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/medium.png?1770828767</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/small.png?1770828767</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/xsmall.png?1770828767</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/369/e9220286d22558b24422af119b418d0c/xxsmall.png?1770828767</AvatarUrl>
<Sponsor>Off-Campus Student Services</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/338/e1b7d06e6429924ca2901e87b95cf6a8/xxlarge.jpg?1392326095</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/338/e1b7d06e6429924ca2901e87b95cf6a8/xlarge.jpg?1392326095</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/338/e1b7d06e6429924ca2901e87b95cf6a8/large.jpg?1392326095</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/338/e1b7d06e6429924ca2901e87b95cf6a8/medium.jpg?1392326095</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/338/e1b7d06e6429924ca2901e87b95cf6a8/small.jpg?1392326095</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/338/e1b7d06e6429924ca2901e87b95cf6a8/xsmall.jpg?1392326095</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/338/e1b7d06e6429924ca2901e87b95cf6a8/xxsmall.jpg?1392326095</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 13 Feb 2014 16:16:57 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41342" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41342">
<Title>N.S.A. Forces Out Civilian Employee With Snowden Tie</Title>
<Body>
<![CDATA[
    <div class="html-content">The move comes after an investigation to “assign accountability” for the disclosure of intelligence secrets by Edward J. Snowden, a former contractor for the National Security Agency.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F14%2Fus%2Fpolitics%2Fnsa-fires-civilian-employee-tied-to-snowden-leaks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=N.S.A.+Forces+Out+Civilian+Employee+With+Snowden+Tie" 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%2F2014%2F02%2F14%2Fus%2Fpolitics%2Fnsa-fires-civilian-employee-tied-to-snowden-leaks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=N.S.A.+Forces+Out+Civilian+Employee+With+Snowden+Tie" 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%2F2014%2F02%2F14%2Fus%2Fpolitics%2Fnsa-fires-civilian-employee-tied-to-snowden-leaks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=N.S.A.+Forces+Out+Civilian+Employee+With+Snowden+Tie" 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%2F2014%2F02%2F14%2Fus%2Fpolitics%2Fnsa-fires-civilian-employee-tied-to-snowden-leaks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=N.S.A.+Forces+Out+Civilian+Employee+With+Snowden+Tie" 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%2F2014%2F02%2F14%2Fus%2Fpolitics%2Fnsa-fires-civilian-employee-tied-to-snowden-leaks.html%3Fpartner%3Drss%26emc%3Drss&amp;t=N.S.A.+Forces+Out+Civilian+Employee+With+Snowden+Tie" 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/186530621004/u/0/f/640387/c/34625/s/37149c81/sc/1/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530621004/u/0/f/640387/c/34625/s/37149c81/sc/1/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530621004/u/0/f/640387/c/34625/s/37149c81/sc/1/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530621004/u/0/f/640387/c/34625/s/37149c81/sc/1/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530621004/u/0/f/640387/c/34625/s/37149c81/sc/1/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530621004/u/0/f/640387/c/34625/s/37149c81/sc/1/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186530621004/u/0/f/640387/c/34625/s/37149c81/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530621004/u/0/f/640387/c/34625/s/37149c81/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The move comes after an investigation to “assign accountability” for the disclosure of intelligence secrets by Edward J. Snowden, a former contractor for the National Security Agency.      </Summary>
<Website>http://www.nytimes.com/2014/02/14/us/politics/nsa-fires-civilian-employee-tied-to-snowden-leaks.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41342/guest@my.umbc.edu/bde1c03aa6331bb584e3f69439dbccf1/api/pixel</TrackingUrl>
<Tag>alexander-keith-b</Tag>
<Tag>clapper-james-r-jr</Tag>
<Tag>classified-information-and-state-secrets</Tag>
<Tag>computer-security</Tag>
<Tag>national-security-agency</Tag>
<Tag>new</Tag>
<Tag>snowden-edward-j</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>Thu, 13 Feb 2014 15:50:54 -0500</PostedAt>
<EditAt>Thu, 13 Feb 2014 19:35:18 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41337" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41337">
<Title>GRC (Graduate Research Conference) Updates</Title>
<Tagline>Register To Attend &amp; Submit Abstracts By (3/1)</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <strong>The official date of the 36th Annual Graduate Research Conference (GRC) is Wednesday, March 26th, 2014!</strong><br><br>The GRC (Graduate Research Conference) is an annual GSA event intended to showcase graduate students and their work on our campus.  For new graduate students it offers the opportunity to learn effective presentation skills.  It also gives graduate students who have current projects with an opportunity to learn how to communicate the importance of their work to those outside of their fields.<br><br>ATTENDEES:  Registration to attend the conference can be found <a href="https://docs.google.com/forms/d/1RSNDFW0dbS7gjAL65g-NStD-bFciUQWhmAekgzlyhbo/viewform" rel="nofollow external" class="bo">here</a>.<br><br>PRESENTERS:  Final registrations and abstract are due by March 1st.More information for presenters on how to register and submit your abstracts can be found on the <a href="http://gsa.umbc.edu/grc-2/grc-presenters/" rel="nofollow external" class="bo">“Presenters”</a> page.<br><br>JUDGES: Information and registration to Judge presentations at GRC is available on our <a href="http://gsa.umbc.edu/grc-2/grc-judges/" rel="nofollow external" class="bo">"Judges”</a> page.<br><br>Hosted Events:<br>Pathways Through Graduate School Panel<br>More information to come soon.<br><br>For more information on this event, click <a href="http://gsa.umbc.edu/grc-2/" rel="nofollow external" class="bo">here</a>.</div>
]]>
</Body>
<Summary>The official date of the 36th Annual Graduate Research Conference (GRC) is Wednesday, March 26th, 2014!  The GRC (Graduate Research Conference) is an annual GSA event intended to showcase graduate...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41337/guest@my.umbc.edu/a24d2bbcd7660a4a9ec99780e9bb4c7d/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/337/80a9eda15c03d95e7ef34aa6c648fbc5/xxlarge.jpg?1392323978</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/337/80a9eda15c03d95e7ef34aa6c648fbc5/xlarge.jpg?1392323978</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/337/80a9eda15c03d95e7ef34aa6c648fbc5/large.jpg?1392323978</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/337/80a9eda15c03d95e7ef34aa6c648fbc5/medium.jpg?1392323978</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/337/80a9eda15c03d95e7ef34aa6c648fbc5/small.jpg?1392323978</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/337/80a9eda15c03d95e7ef34aa6c648fbc5/xsmall.jpg?1392323978</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/337/80a9eda15c03d95e7ef34aa6c648fbc5/xxsmall.jpg?1392323978</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Feb 2014 15:40:04 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="41336" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41336">
<Title>Joan Shin Awarded Ben Warren International House Trust Prize</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span>Education Professor of Practice Joan Shin has received the 2013 Ben Warren International
    House Trust Prize for her book <em>Teaching Young Learners English</em> (National Geographic Learning/Cengage Learning, 2013). Shin coauthored the book with JoAnn Crandall, Professor Emerita and former Director of the Language, Literacy and Culture Ph.D. program.</span></p>
    
    <p><span>The prestigious award is given annually to the author or authors of the most outstanding work in the field of language teacher education. The Ben Warren International House Trust was created as a memorial to the work and life of Ben Warren, who was a leader in developing the world’s leading language teaching organization.</span></p>
    
    <p><span>Shin’s book was published last year. It teaches English as a foreign language to young
    children and presents practical suggestions and best practices for teachers to engage young learners.</span></p>
    
    <p><span>The award was announced in Barcelona, Spain on Saturday, February 8. You can read more
    about the announcement <a href="http://www.ihes.com/warren/" rel="nofollow external" class="bo"><span>here</span></a>. You can also find more information on
    Shin’s book series with <em>National Geographic Learning </em><a href="http://umbcinsights.wordpress.com/2013/11/07/joan-shin-education-launches-book-series-with-national-geographic-learning/" rel="nofollow external" class="bo"><span>here</span></a>.</span></p>
    
    </div>
]]>
</Body>
<Summary>Education Professor of Practice Joan Shin has received the 2013 Ben Warren International House Trust Prize for her book Teaching Young Learners English (National Geographic Learning/Cengage...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41336/guest@my.umbc.edu/40500e90d5833167c12e5501db0251d4/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>1</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Feb 2014 15:23:16 -0500</PostedAt>
<EditAt>Thu, 13 Feb 2014 15:27:41 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="41335" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41335">
<Title>Call for proposals for &#8220;What Went Wrong?" Conference</Title>
<Tagline>Reflecting and Learning from Community-Engaged Research</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <strong><br>“What Went Wrong?"<br>Reflecting and Learning from Community-Engaged Research</strong><br><br>Members of the Twin Cities metropolitan area (Minneapolis &amp; St. Paul, MN) in conjunction with the University of Minnesota are convening the first ever “What Went Wrong?” conference from July 11-12, 2014, dedicated to understanding and enhancing community-engaged research practices. <br><br>The “What Went Wrong?” conference will provide a space for those working for social justice to come together in active dialogue about what it means for communities and universities to practice deeply engaged research that is reflexive, questions power dynamics, and works toward shifts in practice. We will unpack our interests, our values, and our ways of knowing to encourage honest collaboration and relevant research. We will seek to disrupt traditional ways of viewing community/university partnerships and power dynamics. We will directly address individual and collective motives and benefits that partners seek from collaboration and the ways these can both expand and limit possibilities. By highlighting our failures, we will analyze the complex conditions that surround engaged research. We will question the ways in which collaborative research for social justice can reinforce the status quo of unequal power dynamics. Finally, the conference will serve as a resource for community members, organizations, youth researchers, graduate students, and university faculty who are interested in developing critical community-engaged research partnerships. <br><br>The “What Went Wrong?” conference is a participatory event. This call for proposals invites you to share the knowledge, wisdom, and experience that have come from “failure.”<br><br>Proposals must be submitted online using this <a href="http://engagedresearchconference.wordpress.com/submit-a-proposal/" rel="nofollow external" class="bo">Proposal Submission Form</a> (a printable form can also be found on this same page). UPDATE: Proposals are due by April 14,2014 at 5pm. More information about the conference can be found <a href="http://engagedresearchconference.wordpress.com/" rel="nofollow external" class="bo">here</a>. See the attached flyer for more information. <br><br>
    </div>
]]>
</Body>
<Summary>“What Went Wrong?" Reflecting and Learning from Community-Engaged Research  Members of the Twin Cities metropolitan area (Minneapolis &amp; St. Paul, MN) in conjunction with the University of...</Summary>
<AttachmentKind>Flyer</AttachmentKind>
<AttachmentUrl>https://assets3-my.umbc.edu/system/shared/attachments/fe78ad7e8ce71a2947ca981dc64bfd97/6a8f1276/news/000/041/335/f2f9990bcda13be8771d656bf489dad5/What went wrong.pdf?1397424820</AttachmentUrl>
<Attachments>
<Attachment kind="Flyer" url="https://my3.my.umbc.edu/posts/41335/attachments/13163"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41335/guest@my.umbc.edu/7f06f81caa8ec17697cd18ef2cdd68c2/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Feb 2014 15:09:51 -0500</PostedAt>
<EditAt>Sun, 13 Apr 2014 17:34:06 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="41334" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41334">
<Title>Short-Term Residential Fellowship</Title>
<Tagline>Indiana University African Studies Collections</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <strong>Call for Proposals </strong><br><br>Indiana University’s African Studies Program invites applications for a short-term residency to conduct research in IU’s Libraries/African Studies Collections. Indiana University’s African Studies Collection ranks among the top tier of such collections in the U.S. It comprises more than 150,000 volumes of monographs and over 700 serial subscriptions as well as materials in other formats (e.g. posters, slides, film/video, audio tapes, etc). The focus of the collection is on the humanities and social sciences, supporting a wide range of students and faculty in such departments as history, anthropology, fine arts, theatre &amp; drama, literature, folklore, ethnomusicology, communication and culture, linguistics, religious studies, education, political science, business, economics, journalism, and applied health science. <br><br>This residency is intended for faculty members at Historically Black Colleges and Universities, or at other U.S. colleges / universities with limited Africa collections, to conduct research in Indiana University’s libraries and special collections in support of curriculum development or publications. The successful applicant will receive an award that covers domestic travel, accommodations in Bloomington, and a modest per diem for up to two weeks of research. The award will cover expenses up to a maximum of $2,000 and must be used before August 01, 2014. The recipient is expected to reside in Bloomington during the period of her/his award. <br><br>Applicants must have completed their Ph.D. degree and be employed at a U.S. college/university. Applicants are asked to submit a curriculum vitae and a brief proposal. The deadline for applications is March 5, 2014. Awards will be announced by March 25, 2014.  <br><br>Applications may be submitted electronically to Ms. Marilyn Estep (<a href="mailto:estepm@indiana.edu">estepm@indiana.edu</a>). Paper applications should be sent to: <br><br>Library Residency <br>African Studies Program <br>Woodburn Hall 221 <br>Indiana University <br>Bloomington, IN 47405<br><br>See the attached flyer for additional information. <br>
    </div>
]]>
</Body>
<Summary>Call for Proposals   Indiana University’s African Studies Program invites applications for a short-term residency to conduct research in IU’s Libraries/African Studies Collections. Indiana...</Summary>
<AttachmentKind>Flyer</AttachmentKind>
<AttachmentUrl>https://assets2-my.umbc.edu/system/shared/attachments/24779f378ad579df83934395338cd78e/6a8f1276/news/000/041/334/1514f187930072575629709336826443/Library Residency 2014_announcement.pdf?1392320800</AttachmentUrl>
<Attachments>
<Attachment kind="Flyer" url="https://my3.my.umbc.edu/posts/41334/attachments/12561"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41334/guest@my.umbc.edu/906a0cdb6abd8fc00bc2d3a1057b7b35/api/pixel</TrackingUrl>
<Group token="llc">Language, Literacy and Culture Doctoral Program</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/llc</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/original.jpg?1375383725</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xlarge.png?1375383725</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/large.png?1375383725</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/medium.png?1375383725</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/small.png?1375383725</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xsmall.png?1375383725</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/537/e594b22cf15b445f7476775aa508e9c3/xxsmall.png?1375383725</AvatarUrl>
<Sponsor>Language, Literacy and Culture Doctoral Program</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 13 Feb 2014 14:47:37 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109834" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109834">
<Title>Stephen Freeland, INDS, in WIRED</Title>
<Body>
<![CDATA[
    <div class="html-content">Most scientist accept the RNA world hypothesis, which states that RNA was the first biological molecule due to its ability to copy itself and pass along genetic traits. However, Nicholas Hud, a chemist at the Georgia Institute of Technology, wasn’t convinced. A recent article in WIRED, courtesy of Quanta Magazine, discusses Hud’s experiment with the building blocks of RNA. The experiment made a breakthrough with the discovery of a chemical recipe that points to the existence of a molecule that might pre-date RNA. Quanta interviewed Stephen Freeland, director of UMBC’s interdiscipinary studies program, for the article. “In my opinion, nothing …</div>
]]>
</Body>
<Summary>Most scientist accept the RNA world hypothesis, which states that RNA was the first biological molecule due to its ability to copy itself and pass along genetic traits. However, Nicholas Hud, a...</Summary>
<Website>https://news.umbc.edu/stephen-freeland-inds-in-wired/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109834/guest@my.umbc.edu/e24b2b14ecde85e3b285d5b4c45ff50a/api/pixel</TrackingUrl>
<Tag>inds</Tag>
<Tag>science-and-technology</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>Thu, 13 Feb 2014 14:44:39 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41333" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41333">
<Title>IV LIVE- Worship night in Patapsco Basement</Title>
<Body>
<![CDATA[
    <div class="html-content">Hello everyone hope you’re enjoying the snow day! For IV LIVE tonight we are having a time of worship in Patapsco Basement instead of our usual large group. If you can make it out please come by for a time … <a href="http://umbciv.wordpress.com/2014/02/13/iv-live-worship-night-in-patapsco-basement/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>Hello everyone hope you’re enjoying the snow day! For IV LIVE tonight we are having a time of worship in Patapsco Basement instead of our usual large group. If you can make it out please come by...</Summary>
<Website>http://umbciv.wordpress.com/2014/02/13/iv-live-worship-night-in-patapsco-basement/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41333/guest@my.umbc.edu/9da21a94fe112ab8d27125c37518e527/api/pixel</TrackingUrl>
<Tag>posts</Tag>
<Group token="iv">Intervarsity Christian Fellowship</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/iv</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xsmall.png?1567536344</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/original.png?1567536344</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xxlarge.png?1567536344</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xlarge.png?1567536344</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/large.png?1567536344</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/medium.png?1567536344</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/small.png?1567536344</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xsmall.png?1567536344</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/094/dd82d58268453ca1c56996aa87e97fca/xxsmall.png?1567536344</AvatarUrl>
<Sponsor>InterVarsity Christian Fellowship</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 13 Feb 2014 14:43:35 -0500</PostedAt>
</NewsItem>

</News>
