<?xml version="1.0"?>
<News hasArchived="true" page="8495" pageCount="10825" pageSize="10" timestamp="Sat, 19 Sep 2026 00:39:49 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=recent&amp;page=8495">
<NewsItem contentIssues="true" id="34495" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34495">
<Title>WebKit Has Implemented srcset, And It&#8217;s A Good Thing</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <table width="650">
    <tbody>
    <tr>
    <td>
    <div>
    <img src="http://statisches.auslieferung.commindo-media-ressourcen.de/advertisement.gif" alt="" style="max-width: 100%; height: auto;"><br><a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=1" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=1" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=2" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=2" alt="" style="max-width: 100%; height: auto;"></a> <a href="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=target&amp;collection=smashing-rss&amp;position=3" rel="nofollow external" class="bo"><img src="http://auslieferung.commindo-media-ressourcen.de/random.php?mode=image&amp;collection=smashing-rss&amp;position=3" alt="" style="max-width: 100%; height: auto;"></a>
    </div>
    </td>
    </tr>
    </tbody>
    </table>
    <p>WebKit has made some serious news by finally <a href="https://www.webkit.org/blog/2910/improved-support-for-high-resolution-displays-with-the-srcset-image-attribute/" rel="nofollow external" class="bo">implementing the <code>srcset</code> attribute</a>. As Chair of the W3C’s Responsive Images Community Group, I’ve been alternately hoping for and dreading this moment for some time now. It turns out to be good news for all involved parties—the users browsing the Web, most of all.</p>
    <p>As with all matters pertaining to “responsive images”: it’s complicated, and it can be hard keeping up with the signal in all the noise. Here’s what you need to know.</p>
    <h3>What Does It Do?</h3>
    <p>As originally proposed, the <code>srcset</code> attribute allowed developers to specify a list of sources for an image attribute, to be delivered based on the pixel density of the user’s display:</p>
    <pre><code>&lt;img src="low-res.jpg" srcset="high-res.jpg 2x"&gt;</code></pre>
    <p>Not too scary, this markup. In plain English:</p>
    <p>“Use <em>low-res.jpg</em> as the source for this <code>img</code> on low-resolution displays, and for any browser that doesn’t understand the <code>srcset</code> attribute. Use <em>high-res.jpg</em> as the source for this <code>img</code> on high-resolution displays in browsers that understand the <code>srcset</code> attribute.”</p>
    <p>Things were starting to look scary, for a little while there. Due in part to high resolution devices, the average website is now nearly an <a href="http://httparchive.org/interesting.php?a=All&amp;l=Aug%2015%202013" rel="nofollow external" class="bo">entire megabyte of images</a>. Now developers can target users on high-resolution displays with a high-resolution image source. Meanwhile, users on lower pixel density displays won’t be saddled with the bandwidth cost of downloading a massive high-resolution image, without seeing any benefit.</p>
    <h3>Can’t We Do That With JavaScript?</h3>
    <p>On the surface, <code>srcset</code> isn’t doing anything special—it chooses an appropriate source from an attribute and swaps the contents of an <code>img</code> tag’s <code>src</code>. Swapping the contents of an attribute is something we’ve been doing with JavaScript since time immemorial. Well, since the 90s, anyway. So, what does this gain us?</p>
    <p>We actually attempted this approach on <a href="http://bostonglobe.com" rel="nofollow external" class="bo">BostonGlobe.com</a>, one of the earlier sites to make use of any sort of “responsive images” solution. Thanks to increasingly aggressive prefetching in several of the major browsers, an image’s <code>src</code> is requested long before we have a chance to apply any custom scripting: we would end up making two requests for every one image we displayed, defeating the entire purpose. I’ve <a href="http://alistapart.com/article/responsive-images-how-they-almost-worked-and-what-we-need" rel="nofollow external" class="bo">documented some of those efforts elsewhere</a>, so I’ll spare you the gory details here.</p>
    <h3>Can’t We Do That With CSS?</h3>
    <p>“Yes” and “No.” We can do this with background images easily enough, using a combination of media queries concerned with pixel density. <code>srcset</code> as implemented by WebKit is very similar to the recent <code>image-set</code> feature they introduced to CSS. <code>image-set</code> allows you to specify a list of background image sources and resolutions and allow the browser to make the decision as to which one is most appropriate—pretty familiar stuff. We didn’t have anything along these lines for non-presentational <em>content</em> images, however, until now.</p>
    <p>Using CSS to manage content images is broken by default, in terms of keeping our concerns separate. It’s an approach that may make perfect sense within the scope of a quick demo page, but stands to quickly spiral out of control in a production website. Having our CMS generate scores of stylesheets full of background images would be no picnic, from a developer standpoint. Worse, however, is that it would lead to requests for stylesheets and images that users may not need unless done very, very carefully. Beyond that, it renders our images—no pun intended—inaccessible to users browsing by way of assistive technologies.</p>
    <p>The closest thing we’ve found to a CSS-based approach would swap an image’s sources based on values set in HTMLs data attributes, using <a href="http://nicolasgallagher.com/responsive-images-using-css3" rel="nofollow external" class="bo">some proposed CSS trickery</a>, much of which is only theoretical and may never happen. However, it still didn’t account for the the double download of high and low resolution image assets—the same issue we encountered with JavaScript. Even if a technique like Nicolas’ should become available to us, we’ll still face the same problems as many script-based solutions: attempting to work around a wasteful, redundant request.</p>
    <h3>What Does It Do About Bandwidth?</h3>
    <p>Regardless of screen density, there are a number of situations where lower resolution images sources may be preferable: a Retina MacBook Pro tethered to a 3G, for example, or an unstable conference WiFi network—both situations we’ve all been in plenty of times.</p>
    <p>Beyond simply providing us with a sort of inline shorthand for resolution media queries, <code>srcset</code> accounts for bandwidth as well, in a sense. It’s buried in arcane spec-speak, but one of the really exciting facets of <code>srcset</code> is that it’s defined as a set of <em>suggestions</em> to the browser. The browser can then use environmental heuristics or a user preference to decide that it wants to fetch a lower resolution image despite a high-resolution display: envision a preference in your mobile browser allowing high-res images to only be requested while connected to WiFi, or a manual browser preference allowing you to only request low-resolution images when your connection is shaky.</p>
    <p><a href="http://usecases.responsiveimages.org" rel="nofollow external" class="bo"><img src="http://media.smashingmagazine.com/wp-content/uploads/2013/08/devices-responsive-images-use-case.png" width="500" alt="Responsive Images" style="max-width: 100%; height: auto;"></a><br><em>Ideally, we’d love to send only those images to devices which are specifically resized for each screen resolution. The intention is to save bandwidth and allow the images to download faster on the targeted screen. A <a href="http://usecases.responsiveimages.org" rel="nofollow external" class="bo">common use case for responsive images</a>.</em></p>
    <p>This isn’t a part of WebKit’s early <code>srcset</code> implementation, but it does pave the way for their addition without requiring any changes to our markup. We, developers, can safely use <code>srcset</code> today, and these optimizations may come “for free” in the future.</p>
    <h3>What Does This Mean For The <code>picture</code> Element?</h3>
    <p>Here’s where things get interesting.</p>
    <p>The version of <code>srcset</code> implemented by WebKit matches the original proposed use of <code>srcset</code>, and the version that the <a href="http://responsiveimages.org" rel="nofollow external" class="bo">Responsive Images Community Group</a> has been working towards. We can think of this incarnation of <code>srcset</code> as shorthand for the whole slew of media queries concerned with resolution, with one key difference where the browser can choose to override the applicable source based on user preference.</p>
    <p>While this implementation matches the original <code>srcset</code> proposal, the current <code>srcset</code> spec attempts to expand the syntax to cover some of the <a href="http://usecases.responsiveimages.org" rel="nofollow external" class="bo">use cases</a> that the <code>picture</code> element fulfills, using a microsyntax that performs some—but nowhere near all—of the functions of media queries.</p>
    <pre><code>&lt;img src="fallback.jpg" srcset="small.jpg 640w 1x, small-hd.jpg 640w 2x, large.jpg 1x, large-hd.jpg 2x" alt="…"&gt;</code></pre>
    <p>In our opinion not ideal, this markup pattern. We’re restricted to the equivalent of <code>max-width</code> media queries, pixels, and an inscrutable microsyntax, all for the sake of duplicating the function of media queries. Fortunately for us, neither Web developers nor browser reps are particularly fond of this overextended syntax—hopefully, it will never see the light of day.</p>
    <p>The <code>picture</code> element exists to address these use cases using a more flexible—and familiar—syntax. <code>picture</code> uses <code>media</code> attributes on <code>source</code> elements, similar to the <code>video</code> element. This allows us to target image sources to a combination of factors: viewport height and/or width, in pixels or <code>em</code>s, using either <code>min</code> or <code>max</code> values—just like media queries in our CSS.</p>
    <pre><code>&lt;picture&gt;&#x000A;        &lt;source src="med.jpg" media="(min-width: 40em)" /&gt;&#x000A;        &lt;source src="sm.jpg" /&gt;&#x000A;        &lt;img src="fallback.jpg" alt="" /&gt;&#x000A;    &lt;/picture&gt;&#x000A;    </code></pre>
    <p>The <code>picture</code> specification was written with this reduced <code>srcset</code> syntax in mind, so it could be used on <code>picture</code>’s <code>source</code> elements as well as <code>img</code> elements.</p>
    <pre><code>&lt;picture&gt;&#x000A;        &lt;source srcset="med.jpg 1x, med-hd.jpg 2x" media="(min-width: 40em)" /&gt; &#x000A;        &lt;source src="sm.jpg 1x, sm-hd.jpg 2x.jpg" /&gt;&#x000A;        &lt;img src="fallback.jpg" alt="" /&gt;&#x000A;    &lt;/picture&gt;</code></pre>
    <p>In concert, the two markup patterns give us an incredible amount of flexibility over what image sources we serve to users, depending on their context.</p>
    <h3>So This <em>Is</em> Good News.</h3>
    <p>Absolutely, it is. While <code>srcset</code> as implemented by WebKit doesn’t address to all the <a href="http://usecases.responsiveimages.org" rel="nofollow external" class="bo">responsive images use cases</a>, it does represent a major step toward a long overdue solution—hopefully the first of many.</p>
    <p>Let’s hope that other browsers follow WebKit’s lead in implementing this feature as it was originally proposed, and stay tuned to the <a href="http://responsiveimages.org" rel="nofollow external" class="bo">Responsive Images Community Group’s homepage</a> and <a href="http://twitter.com/respimg" rel="nofollow external" class="bo">Twitter account</a> to keep tabs on the subject.</p>
    <p>I also wrote about the issues with responsive images and the solutions we’ve come up with when working on the BostonGlobe website in the chapter “The Struggles and Solutions In Responsive Web Design” of the <a href="https://shop.smashingmagazine.com/smashing-book-4.html" rel="nofollow external" class="bo">upcoming Smashing Book 4</a>. Grab it, you won’t be disappointed.</p>
    <p><em>(vf)</em></p>
    <hr>
    <p><small>© Mat Marquis for <a href="http://www.smashingmagazine.com" rel="nofollow external" class="bo">Smashing Magazine</a>, 2013.</small></p>
    </div>
]]>
</Body>
<Summary>        WebKit has made some serious news by finally implementing the srcset attribute. As Chair of the W3C’s Responsive Images Community Group, I’ve been alternately hoping for and dreading this...</Summary>
<Website>http://www.smashingmagazine.com/2013/08/21/webkit-implements-srcset-and-why-its-a-good-thing/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34495/guest@my.umbc.edu/036f5e03cdfe9eab262b7e925c068145/api/pixel</TrackingUrl>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mobile</Tag>
<Tag>mysql</Tag>
<Tag>opinion-column</Tag>
<Tag>php</Tag>
<Tag>responsive-web-design</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, 21 Aug 2013 16:33:09 -0400</PostedAt>
<EditAt>Wed, 21 Aug 2013 16:33:09 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34494" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34494">
<Title>What&#8217;s next for PROMISE? Meetings on Campuses in Maryland! Aug. 29, Sept. 3, Sept. 6, 2013!</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>We had a wonderful 2013 PROMISE Summer Success Institute (SSI) 10th Anniversary Celebration. Thank you, all of you, for coming, speaking, participating, sharing, and connecting! Classes will begin soon, but our campuses have plans for you … there is a reception at College Park, a lunch at UMB, and a dinner at UMBC, all coming up within the next two weeks!</p>
    <p><strong><em><a href="http://promiseagep.files.wordpress.com/2013/08/umcp.jpg" rel="nofollow external" class="bo"><img alt="UMCP" src="http://promiseagep.files.wordpress.com/2013/08/umcp.jpg?w=150&amp;h=146" width="150" height="146" style="max-width: 100%; height: auto;"></a>At College Park:</em> </strong>Annual Networking Reception:</p>
    <p>Thursday, August 29, 2013 ● 4:30 p.m. – 6:30 p.m.</p>
    <p>Stamp Student Union</p>
    <p>Atrium Room 1107</p>
    <p><a href="http://www.gradschool.umd.edu/images/uploads/Welcome_Reception_2013flyer.pdf" rel="nofollow external" class="bo">http://www.gradschool.umd.edu/images/uploads/Welcome_Reception_2013flyer.pdf</a></p>
    <p><strong><em><a href="http://promiseagep.files.wordpress.com/2013/08/umb-hi-res-logo.jpg" rel="nofollow external" class="bo"><img alt="UMB Hi Res Logo" src="http://promiseagep.files.wordpress.com/2013/08/umb-hi-res-logo.jpg?w=300&amp;h=78" width="300" height="78" style="max-width: 100%; height: auto;"></a></em></strong></p>
    <p><strong><em>At UMB:</em></strong> Welcome Back Lunch!</p>
    <p>Tuesday, September 3, 2013 ● 12:00 p.m. – 1:00 p.m</p>
    <p>SMC Center, Room 203.</p>
    <p>(This is the same location as the SSI. Room 203 is down the hall from the ballroom.)</p>
    <p><em><strong><a href="http://promiseagep.files.wordpress.com/2013/08/umbc-gradlogo3.jpg" rel="nofollow external" class="bo"><img alt="UMBC GradLogo3" src="http://promiseagep.files.wordpress.com/2013/08/umbc-gradlogo3.jpg?w=630" style="max-width: 100%; height: auto;"></a>At UMBC:</strong></em> PROMISE Fall Opening Meeting.</p>
    <p>Friday, September 6, 2013 ● 4:30 p.m. – 6:00 p.m</p>
    <p>Game Room, 2nd Floor of the Commons.</p>
    <p>RSVP here: <a href="http://my.umbc.edu/groups/promise/events/18969" rel="nofollow external" class="bo">http://my.umbc.edu/groups/promise/events/18969</a>.</p>
    <p>Students from other campuses within the University System of Maryland, e.g., Bowie, Coppin, UMES, and others are invited to attend this event at UMBC. You may also attend the Funding Seminar which will be held the next day: <a href="http://my.umbc.edu/groups/promise/events/18755" rel="nofollow external" class="bo">http://my.umbc.edu/groups/promise/events/18755</a> (PROMISE Alums, Dr. Patti Ordóñez and Dr. Frances Carter-Johnson, will lead this session. In total, they have been responsible for millions of dollars of funding that have come to participants in their seminar.)</p>
    <p><em><strong>Other things to consider:</strong></em></p>
    <p>1) Dr. James Green wanted to be a speaker for SSI, but he couldn’t come, so he has invited you to attend sessions on entrepreneurship education at College Park! See details here:</p>
    <p><a href="http://promiseagep.wordpress.com/2013/07/18/promise-ssi-registrants-throughout-the-usm-are-invited-to-entrepreneur-office-hours-august-september-2013/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/07/18/promise-ssi-registrants-throughout-the-usm-are-invited-to-entrepreneur-office-hours-august-september-2013/</a></p>
    <p>2) Remember our tips for the Fall semester: <a href="http://promiseagep.wordpress.com/2012/08/30/prepare-for-a-successful-fall-semester-communicate-with-your-faculty-a-message-for-new-and-continuing-grad-students/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2012/08/30/prepare-for-a-successful-fall-semester-communicate-with-your-faculty-a-message-for-new-and-continuing-grad-students/</a></p>
    <p>3) Please give a hearty thank-you to Miguel Nino, our PROMISE GA who is now at VA Tech: <a href="http://promiseagep.wordpress.com/2013/08/16/congratulations-to-promise-ga-miguel-nino/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/08/16/congratulations-to-promise-ga-miguel-nino/</a></p>
    <br>   </div>
]]>
</Body>
<Summary>We had a wonderful 2013 PROMISE Summer Success Institute (SSI) 10th Anniversary Celebration. Thank you, all of you, for coming, speaking, participating, sharing, and connecting! Classes will begin...</Summary>
<Website>http://promiseagep.wordpress.com/2013/08/21/whats-next-for-promise-meetings-on-campuses-in-maryland-aug-29-sept-3-sept-6-2013/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34494/guest@my.umbc.edu/5eb1da2ac1bc75e9aeac8aeaa25bf3d7/api/pixel</TrackingUrl>
<Tag>advice-for-students</Tag>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>development</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>nsf</Tag>
<Tag>ph-d-completion</Tag>
<Tag>postdoc</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Graduate Student Development</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 21 Aug 2013 16:28:43 -0400</PostedAt>
<EditAt>Wed, 21 Aug 2013 16:28:43 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35871" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35871">
<Title>What&#8217;s next for PROMISE? Meetings on Campuses in Maryland! Aug. 29, Sept. 3, Sept. 6, 2013!</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>We had a wonderful 2013 PROMISE Summer Success Institute (SSI) 10th Anniversary Celebration. Thank you, all of you, for coming, speaking, participating, sharing, and connecting! Classes will begin soon, but our campuses have plans for you … there is a reception at College Park, a lunch at UMB, and a dinner at UMBC, all coming up within the next two weeks!</p>
    <p><strong><em><a href="http://promiseagep.files.wordpress.com/2013/08/umcp.jpg" rel="nofollow external" class="bo"><img alt="UMCP" src="http://promiseagep.files.wordpress.com/2013/08/umcp.jpg?w=150&amp;h=146" width="150" height="146" style="max-width: 100%; height: auto;"></a>At College Park:</em> </strong>Annual Networking Reception:</p>
    <p>Thursday, August 29, 2013 ● 4:30 p.m. – 6:30 p.m.</p>
    <p>Stamp Student Union</p>
    <p>Atrium Room 1107</p>
    <p><a href="http://www.gradschool.umd.edu/images/uploads/Welcome_Reception_2013flyer.pdf" rel="nofollow external" class="bo">http://www.gradschool.umd.edu/images/uploads/Welcome_Reception_2013flyer.pdf</a></p>
    <p><strong><em><a href="http://promiseagep.files.wordpress.com/2013/08/umb-hi-res-logo.jpg" rel="nofollow external" class="bo"><img alt="UMB Hi Res Logo" src="http://promiseagep.files.wordpress.com/2013/08/umb-hi-res-logo.jpg?w=300&amp;h=78" width="300" height="78" style="max-width: 100%; height: auto;"></a></em></strong></p>
    <p><strong><em>At UMB:</em></strong> Welcome Back Lunch!</p>
    <p>Tuesday, September 3, 2013 ● 12:00 p.m. – 1:00 p.m</p>
    <p>SMC Center, Room 203.</p>
    <p>(This is the same location as the SSI. Room 203 is down the hall from the ballroom.)</p>
    <p><em><strong><a href="http://promiseagep.files.wordpress.com/2013/08/umbc-gradlogo3.jpg" rel="nofollow external" class="bo"><img alt="UMBC GradLogo3" src="http://promiseagep.files.wordpress.com/2013/08/umbc-gradlogo3.jpg?w=630" style="max-width: 100%; height: auto;"></a>At UMBC:</strong></em> PROMISE Fall Opening Meeting.</p>
    <p>Friday, September 6, 2013 ● 4:30 p.m. – 6:00 p.m</p>
    <p>Game Room, 2nd Floor of the Commons.</p>
    <p>RSVP here: <a href="http://my.umbc.edu/groups/promise/events/18969" rel="nofollow external" class="bo">http://my.umbc.edu/groups/promise/events/18969</a>.</p>
    <p>Students from other campuses within the University System of Maryland, e.g., Bowie, Coppin, UMES, and others are invited to attend this event at UMBC. You may also attend the Funding Seminar which will be held the next day: <a href="http://my.umbc.edu/groups/promise/events/18755" rel="nofollow external" class="bo">http://my.umbc.edu/groups/promise/events/18755</a> (PROMISE Alums, Dr. Patti Ordóñez and Dr. Frances Carter-Johnson, will lead this session. In total, they have been responsible for millions of dollars of funding that have come to participants in their seminar.)</p>
    <p><em><strong>Other things to consider:</strong></em></p>
    <p>1) Dr. James Green wanted to be a speaker for SSI, but he couldn’t come, so he has invited you to attend sessions on entrepreneurship education at College Park! See details here:</p>
    <p><a href="http://promiseagep.wordpress.com/2013/07/18/promise-ssi-registrants-throughout-the-usm-are-invited-to-entrepreneur-office-hours-august-september-2013/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/07/18/promise-ssi-registrants-throughout-the-usm-are-invited-to-entrepreneur-office-hours-august-september-2013/</a></p>
    <p>2) Remember our tips for the Fall semester: <a href="http://promiseagep.wordpress.com/2012/08/30/prepare-for-a-successful-fall-semester-communicate-with-your-faculty-a-message-for-new-and-continuing-grad-students/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2012/08/30/prepare-for-a-successful-fall-semester-communicate-with-your-faculty-a-message-for-new-and-continuing-grad-students/</a></p>
    <p>3) Please give a hearty thank-you to Miguel Nino, our PROMISE GA who is now at VA Tech: <a href="http://promiseagep.wordpress.com/2013/08/16/congratulations-to-promise-ga-miguel-nino/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/08/16/congratulations-to-promise-ga-miguel-nino/</a></p>
    <br>   </div>
]]>
</Body>
<Summary>We had a wonderful 2013 PROMISE Summer Success Institute (SSI) 10th Anniversary Celebration. Thank you, all of you, for coming, speaking, participating, sharing, and connecting! Classes will begin...</Summary>
<Website>https://promiseagep.wordpress.com/2013/08/21/whats-next-for-promise-meetings-on-campuses-in-maryland-aug-29-sept-3-sept-6-2013/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35871/guest@my.umbc.edu/f705f8a31cdcc35a01e0b8e7e5e555c3/api/pixel</TrackingUrl>
<Tag>academic-enrichment</Tag>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>development</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>nsf</Tag>
<Tag>ph-d-completion</Tag>
<Tag>postdoc</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Graduate Student Development</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 21 Aug 2013 16:28:43 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34488" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34488">
<Title>NASA&#8217;s BEST Presentation Ranked #2 at the NCSC</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Congratulations to Dr. Susan Hoban, Catherine Kruchten, and Alexis O'Malley for their presentation at the National Charter Schools Conference held at the DC Convention Center on July 3, 2013.  <span>Out of hundreds of presenters, their presentation ranked #2 out of the top 10!</span></p>
    <p>The NASA’s BEST (Beginning Engineering, Science and Technology) project provides professional development for educators and curriculum support resources with a space exploration theme and introduces the Engineering Design Process in STEM for elementary and middle school classrooms. </p>
    </div>
]]>
</Body>
<Summary>Congratulations to Dr. Susan Hoban, Catherine Kruchten, and Alexis O'Malley for their presentation at the National Charter Schools Conference held at the DC Convention Center on July 3, 2013.  Out...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34488/guest@my.umbc.edu/ac10a10b0489b80c21c8ec59ece2f27f/api/pixel</TrackingUrl>
<Group token="jcet">Joint Center for Earth Systems Technology</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/jcet</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xsmall.png?1524593851</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/original.JPG?1524593851</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xxlarge.png?1524593851</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xlarge.png?1524593851</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/large.png?1524593851</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/medium.png?1524593851</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/small.png?1524593851</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xsmall.png?1524593851</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/429/5f87a3fcca7c117d0f4186749a5c6c59/xxsmall.png?1524593851</AvatarUrl>
<Sponsor>Joint Center for Earth Systems Technology</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/488/d6e5dc291ac1503af166693717278919/xxlarge.jpg?1377116091</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/488/d6e5dc291ac1503af166693717278919/xlarge.jpg?1377116091</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/488/d6e5dc291ac1503af166693717278919/large.jpg?1377116091</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/488/d6e5dc291ac1503af166693717278919/medium.jpg?1377116091</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/488/d6e5dc291ac1503af166693717278919/small.jpg?1377116091</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/488/d6e5dc291ac1503af166693717278919/xsmall.jpg?1377116091</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/488/d6e5dc291ac1503af166693717278919/xxsmall.jpg?1377116091</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 21 Aug 2013 16:15:19 -0400</PostedAt>
<EditAt>Fri, 11 Oct 2013 12:57:46 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34493" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34493">
<Title>App Smart: Learning to Read, With the Help of a Tablet</Title>
<Body>
<![CDATA[
    <div class="html-content">Using sound and animations, apps guide children through the process of recognizing letters, to actually reading.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F22%2Ftechnology%2Fpersonaltech%2Flearning-to-read-with-the-help-of-a-tablet.html%3Fpartner%3Drss%26emc%3Drss&amp;t=App+Smart%3A+Learning+to+Read%2C+With+the+Help+of+a+Tablet" 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%2F22%2Ftechnology%2Fpersonaltech%2Flearning-to-read-with-the-help-of-a-tablet.html%3Fpartner%3Drss%26emc%3Drss&amp;t=App+Smart%3A+Learning+to+Read%2C+With+the+Help+of+a+Tablet" 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%2F22%2Ftechnology%2Fpersonaltech%2Flearning-to-read-with-the-help-of-a-tablet.html%3Fpartner%3Drss%26emc%3Drss&amp;t=App+Smart%3A+Learning+to+Read%2C+With+the+Help+of+a+Tablet" 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%2F22%2Ftechnology%2Fpersonaltech%2Flearning-to-read-with-the-help-of-a-tablet.html%3Fpartner%3Drss%26emc%3Drss&amp;t=App+Smart%3A+Learning+to+Read%2C+With+the+Help+of+a+Tablet" 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%2F22%2Ftechnology%2Fpersonaltech%2Flearning-to-read-with-the-help-of-a-tablet.html%3Fpartner%3Drss%26emc%3Drss&amp;t=App+Smart%3A+Learning+to+Read%2C+With+the+Help+of+a+Tablet" 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/173608070852/u/0/f/640387/c/34625/s/303c35e8/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608070852/u/0/f/640387/c/34625/s/303c35e8/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608070852/u/0/f/640387/c/34625/s/303c35e8/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608070852/u/0/f/640387/c/34625/s/303c35e8/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608070852/u/0/f/640387/c/34625/s/303c35e8/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608070852/u/0/f/640387/c/34625/s/303c35e8/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173608070852/u/0/f/640387/c/34625/s/303c35e8/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608070852/u/0/f/640387/c/34625/s/303c35e8/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Using sound and animations, apps guide children through the process of recognizing letters, to actually reading.      </Summary>
<Website>http://www.nytimes.com/2013/08/22/technology/personaltech/learning-to-read-with-the-help-of-a-tablet.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34493/guest@my.umbc.edu/43232e705755825bdb47cfb5ceacc140/api/pixel</TrackingUrl>
<Tag>mobile-applications</Tag>
<Tag>new</Tag>
<Tag>reading-and-writing-skills-education</Tag>
<Tag>tablet-computers</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, 21 Aug 2013 16:11:49 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34489" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34489">
<Title>State of the Art: The Voice-Off: Android vs. Siri</Title>
<Body>
<![CDATA[
    <div class="html-content">Is speech recognition better on smartphones running Google’s operating system or Apple’s? That depends on how it’s used.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F22%2Ftechnology%2Fpersonaltech%2Fandroid-vs-siri-the-voice-recognition-sequel.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+The+Voice-Off%3A+Android+vs.+Siri" 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%2F22%2Ftechnology%2Fpersonaltech%2Fandroid-vs-siri-the-voice-recognition-sequel.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+The+Voice-Off%3A+Android+vs.+Siri" 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%2F22%2Ftechnology%2Fpersonaltech%2Fandroid-vs-siri-the-voice-recognition-sequel.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+The+Voice-Off%3A+Android+vs.+Siri" 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%2F22%2Ftechnology%2Fpersonaltech%2Fandroid-vs-siri-the-voice-recognition-sequel.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+The+Voice-Off%3A+Android+vs.+Siri" 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%2F22%2Ftechnology%2Fpersonaltech%2Fandroid-vs-siri-the-voice-recognition-sequel.html%3Fpartner%3Drss%26emc%3Drss&amp;t=State+of+the+Art%3A+The+Voice-Off%3A+Android+vs.+Siri" 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/173952872531/u/0/f/640387/c/34625/s/303be8fd/sc/15/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952872531/u/0/f/640387/c/34625/s/303be8fd/sc/15/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173952872531/u/0/f/640387/c/34625/s/303be8fd/sc/15/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952872531/u/0/f/640387/c/34625/s/303be8fd/sc/15/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173952872531/u/0/f/640387/c/34625/s/303be8fd/sc/15/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952872531/u/0/f/640387/c/34625/s/303be8fd/sc/15/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173952872531/u/0/f/640387/c/34625/s/303be8fd/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173952872531/u/0/f/640387/c/34625/s/303be8fd/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Is speech recognition better on smartphones running Google’s operating system or Apple’s? That depends on how it’s used.      </Summary>
<Website>http://www.nytimes.com/2013/08/22/technology/personaltech/android-vs-siri-the-voice-recognition-sequel.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34489/guest@my.umbc.edu/01725b672b72926db41bfc1996125bde/api/pixel</TrackingUrl>
<Tag>android-operating-system</Tag>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>blackberry-bbry-nasdaq</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>iphone</Tag>
<Tag>macys-inc-m-nyse</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>voice-recognition-systems</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, 21 Aug 2013 15:40:10 -0400</PostedAt>
<EditAt>Wed, 21 Aug 2013 15:40:10 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34486" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34486">
<Title>Your G.I. Jane/G.I. Joe Moment! Tips to Land a Fellowship at the Broad Institute of Harvard &amp; MIT (By Dr. LaTese Briggs)</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em><a href="http://promiseagep.files.wordpress.com/2013/08/latese-briggs.jpg" rel="nofollow external" class="bo"><img alt="OLYMPUS DIGITAL CAMERA" src="http://promiseagep.files.wordpress.com/2013/08/latese-briggs.jpg?w=119&amp;h=150" width="119" height="150" style="max-width: 100%; height: auto;"></a>The following information was shared by Dr. LaTese Briggs (PROMISE Alum, UMBC Chemistry &amp; Biochemistry, Current Program Analyst at Faster Cures.) Dr. Briggs captivated the audience of the <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">2013 PROMISE SSI on Saturday, August 17</a>, with her call to the audience to have their G.I. Jane/G.I. Joe moments. She called for people to be academically, mentally, and emotionally prepared to step into their moments. Dr. Briggs finished her undergraduate degree at Hood College, her PhD at UMBC, and her Postdoc at the Broad Institute, a collaborative between Harvard and MIT. Dr. Briggs said that she is now in her dream job at an “ACTION” tank.  During the 2013 PROMISE SSI, Dr. Briggs participated in the During her time at UMBC, Dr. Briggs was a Meyerhoff Biomedical Fellow, A Gates Fellow, and a Peer Mentor for PROMISE: Maryland’s AGEP. Dr. Briggs voluntarily provided the information below, after receiving inquires following her segment for the 2013 SSI Alumni PROMISE Talks. <em>We thank her for being so giving of her time and expertise. </em></em></p>
    <ul>
    <li>
    <h2>SSI 2013, August 17. 9:00 AM:<strong> </strong><strong>The PROMISE Talks: PROMISE Alumni Discuss Their Research on Healthcare</strong>
    </h2>
    </li>
    </ul>
    <p><img alt="SSI 2013 PROMISE Talks Photo Banner 9AM FINAL_50" src="http://promiseagep.files.wordpress.com/2013/06/ssi-2013-promise-talks-photo-banner-9am-final_50.jpg?w=630&amp;h=117" width="630" height="118" style="max-width: 100%; height: auto;"></p>
    <p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
    <h1><strong><em>From Dr. Briggs:</em></strong></h1>
    <p>Thank you again for inviting me to participate in the 10<sup>th</sup> anniversary of SSI. It is always an honor to be invited to speak at SSI, but it was truly special to participate in such a milestone event.</p>
    <p>I have a had  few student reach out to me to inquire about the Broad Institute and I thought that it might be helpful to share my response to them with the larger PROMISE audience. I have pasted some tips and useful links on the subject below.</p>
    <p><a href="http://www.broadinstitute.org/" rel="nofollow external" class="bo"><img alt="Broad page2" src="http://promiseagep.files.wordpress.com/2013/08/broad-page2.jpg?w=300&amp;h=159" width="300" height="159" style="max-width: 100%; height: auto;"></a></p>
    <p>1.      Well before you are ready to apply (&lt;1 year prior if possible), please be sure to study the website thoroughly to really get a sense of what is happening at the Broad. Start NOW, well before you are ready to move on to your postdoc. Do this by:</p>
    <p>a.      Familiarizing yourself with the website</p>
    <p>b.      Review the online <a href="http://www.broadinstitute.org/news-and-publications/journalists/annual-reports-and-brochures" rel="nofollow external" class="bo"> Brochures and Annual reports</a></p>
    
    <p>c.      Review the <a href="http://www.broadinstitute.org/what-broad/who-broad/who-broad" rel="nofollow external" class="bo">Program areas at the Broad</a></p>
    
    <p>2.      Identify <a href="http://www.broadinstitute.org/what-broad/who-broad/who-broad" rel="nofollow external" class="bo"> Faculty at the Broad</a> whose research align with your interests and skill sets. When you select these 2-3 people, make certain that you are very familiar with the work (read their papers, understand the larger initiatives that they might be a part of i.e. chemical biology platform, RNAi platform, etc).</p>
    <p>a.      Also try to figure out which conferences these faculty members frequent and get yourself there to meet him/her, and of course when you do, position yourself so that you can strike up a conversation. It can be as simple as “I read about your research in X, and I found Y to be very interesting, can you tell me more about this?”</p>
    <p>3.      Develop a research proposal that outlines a project that you would like to pursue in that lab and really make sure that it is comprehensive, well thought out, and is both in alignment  and can enrich the work that is already going on in that lab (Note: this is good to do for any postdoc position that you consider, I guarantee you that it will put you a few steps ahead of most candidates).</p>
    <p>4.      Read about the <a href="http://www.broadinstitute.org/diversity" rel="nofollow external" class="bo">Diversity Initiative</a> which houses the Diversity Postdoctoral fellowship program. Be sure to read this page carefully before submitting the required documents to <a href="mailto:diversity@broadinstitute.org" rel="nofollow external" class="bo">diversity@broadinstitute.org</a></p>
    <p>5.      Keep in mind that you can also reach out to a faculty member directly if you prefer, or if there are no remaining diversity fellowship slots available.</p>
    <p><strong>Here are some other links that will help you familiarize with the organization:</strong></p>
    <p><a href="http://www.broadinstitute.org/what-broad/our-approach/our-approach" rel="nofollow external" class="bo">Broad Mindset/Approach</a></p>
    
    <p><a href="http://www.broadinstitute.org/blog_roll" rel="nofollow external" class="bo">Broad Blog</a></p>
    
    <p><a href="http://www.broadinstitute.org/videos" rel="nofollow external" class="bo">Broad video library</a></p>
    
    <p>BE THOROUGH! The key to accessing a training opportunity at the Broad is congruency. You need to be both a scientific and cultural fit – meaning that you are motivated and enthusiastic about being creative and highly collaborative.  This is truly a unique organization, so take your time with learning what the Broad is about and really put your best foot forward in the application. The website is dense and there is a lot of “hidden” information, so go through it more than once. If you are selected for an interview, be prepared to give a talk and to  meet at least 10 people during your interview. <strong>The process is intense and competitive, but keep in mind that if you believe that you are exceptional, then you are exceptional, and it will reflect as such at all times. </strong>Don’t sell yourself short; however, be prepared to perform exceptionally when they tell you YES, you can join us as a Broadie!</p>
    <p>LaTese L. Briggs, Ph.D.</p>
    <p><em>FasterCures</em> |A Center of the Milken Institute</p>
    <p>Program Analyst</p>
    <p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
    <p><em><strong>We thank Dr. Briggs for sharing this information!</strong></em></p>
    <br>   </div>
]]>
</Body>
<Summary>The following information was shared by Dr. LaTese Briggs (PROMISE Alum, UMBC Chemistry &amp; Biochemistry, Current Program Analyst at Faster Cures.) Dr. Briggs captivated the audience of the 2013...</Summary>
<Website>http://promiseagep.wordpress.com/2013/08/21/get-ready-for-your-g-i-janeg-i-joe-moment-tips-to-land-a-fellowship-at-the-broad-institute-of-harvard-mit-by-dr-latese-briggs-promise-alum/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34486/guest@my.umbc.edu/856e1d06dad84ebfd87673c94907c979/api/pixel</TrackingUrl>
<Tag>academic-preparation</Tag>
<Tag>advice-for-students</Tag>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>broad-institute</Tag>
<Tag>development</Tag>
<Tag>education</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>jobs-and-funding</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>nsf</Tag>
<Tag>postdoc</Tag>
<Tag>postdoctoral-affairs</Tag>
<Tag>postdoctoral-research</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Graduate Student Development</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 21 Aug 2013 15:27:53 -0400</PostedAt>
<EditAt>Wed, 21 Aug 2013 15:27:53 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34490" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34490">
<Title>Your G.I. Jane/G.I. Joe Moment! Tips to Land a Fellowship at the Broad Institute of Harvard &amp; MIT (By Dr. LaTese Briggs)</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em><a href="http://promiseagep.files.wordpress.com/2013/08/latese-briggs.jpg" rel="nofollow external" class="bo"><img alt="OLYMPUS DIGITAL CAMERA" src="http://promiseagep.files.wordpress.com/2013/08/latese-briggs.jpg?w=119&amp;h=150" width="119" height="150" style="max-width: 100%; height: auto;"></a>The following information was shared by Dr. LaTese Briggs (PROMISE Alum, UMBC Chemistry &amp; Biochemistry, Current Program Analyst at Faster Cures.) Dr. Briggs captivated the audience of the <a href="http://promiseagep.wordpress.com/2013/06/21/promise-summer-success-institute-ssi-10th-anniversary-celebration-august-16-17-2013-in-baltimore/" rel="nofollow external" class="bo">2013 PROMISE SSI on Saturday, August 17</a>, with her call to the audience to have their G.I. Jane/G.I. Joe moments. She called for people to be academically, mentally, and emotionally prepared to step into their moments. Dr. Briggs finished her undergraduate degree at Hood College, her PhD at UMBC, and her Postdoc at the Broad Institute, a collaborative between Harvard and MIT. Dr. Briggs said that she is now in her dream job at an “ACTION” tank.  During the 2013 PROMISE SSI, Dr. Briggs participated in the During her time at UMBC, Dr. Briggs was a Meyerhoff Biomedical Fellow, A Gates Fellow, and a Peer Mentor for PROMISE: Maryland’s AGEP. Dr. Briggs voluntarily provided the information below, after receiving inquires following her segment for the 2013 SSI Alumni PROMISE Talks. <em>We thank her for being so giving of her time and expertise. </em></em></p>
    <ul>
    <li>
    <h2>SSI 2013, August 17. 9:00 AM:<strong> </strong><strong>The PROMISE Talks: PROMISE Alumni Discuss Their Research on Healthcare</strong>
    </h2>
    </li>
    </ul>
    <p><img alt="SSI 2013 PROMISE Talks Photo Banner 9AM FINAL_50" src="http://promiseagep.files.wordpress.com/2013/06/ssi-2013-promise-talks-photo-banner-9am-final_50.jpg?w=630&amp;h=117" width="630" height="118" style="max-width: 100%; height: auto;"></p>
    <p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
    <h1><strong><em>From Dr. Briggs:</em></strong></h1>
    <p>Thank you again for inviting me to participate in the 10<sup>th</sup> anniversary of SSI. It is always an honor to be invited to speak at SSI, but it was truly special to participate in such a milestone event.</p>
    <p>I have a had  few student reach out to me to inquire about the Broad Institute and I thought that it might be helpful to share my response to them with the larger PROMISE audience. I have pasted some tips and useful links on the subject below.</p>
    <p><a href="http://www.broadinstitute.org/" rel="nofollow external" class="bo"><img alt="Broad page2" src="http://promiseagep.files.wordpress.com/2013/08/broad-page2.jpg?w=300&amp;h=159" width="300" height="159" style="max-width: 100%; height: auto;"></a></p>
    <p>1.      Well before you are ready to apply (&lt;1 year prior if possible), please be sure to study the website thoroughly to really get a sense of what is happening at the Broad. Start NOW, well before you are ready to move on to your postdoc. Do this by:</p>
    <p>a.      Familiarizing yourself with the website</p>
    <p>b.      Review the online <a href="http://www.broadinstitute.org/news-and-publications/journalists/annual-reports-and-brochures" rel="nofollow external" class="bo"> Brochures and Annual reports</a></p>
    
    <p>c.      Review the <a href="http://www.broadinstitute.org/what-broad/who-broad/who-broad" rel="nofollow external" class="bo">Program areas at the Broad</a></p>
    
    <p>2.      Identify <a href="http://www.broadinstitute.org/what-broad/who-broad/who-broad" rel="nofollow external" class="bo"> Faculty at the Broad</a> whose research align with your interests and skill sets. When you select these 2-3 people, make certain that you are very familiar with the work (read their papers, understand the larger initiatives that they might be a part of i.e. chemical biology platform, RNAi platform, etc).</p>
    <p>a.      Also try to figure out which conferences these faculty members frequent and get yourself there to meet him/her, and of course when you do, position yourself so that you can strike up a conversation. It can be as simple as “I read about your research in X, and I found Y to be very interesting, can you tell me more about this?”</p>
    <p>3.      Develop a research proposal that outlines a project that you would like to pursue in that lab and really make sure that it is comprehensive, well thought out, and is both in alignment  and can enrich the work that is already going on in that lab (Note: this is good to do for any postdoc position that you consider, I guarantee you that it will put you a few steps ahead of most candidates).</p>
    <p>4.      Read about the <a href="http://www.broadinstitute.org/diversity" rel="nofollow external" class="bo">Diversity Initiative</a> which houses the Diversity Postdoctoral fellowship program. Be sure to read this page carefully before submitting the required documents to <a href="mailto:diversity@broadinstitute.org" rel="nofollow external" class="bo">diversity@broadinstitute.org</a></p>
    <p>5.      Keep in mind that you can also reach out to a faculty member directly if you prefer, or if there are no remaining diversity fellowship slots available.</p>
    <p><strong>Here are some other links that will help you familiarize with the organization:</strong></p>
    <p><a href="http://www.broadinstitute.org/what-broad/our-approach/our-approach" rel="nofollow external" class="bo">Broad Mindset/Approach</a></p>
    
    <p><a href="http://www.broadinstitute.org/blog_roll" rel="nofollow external" class="bo">Broad Blog</a></p>
    
    <p><a href="http://www.broadinstitute.org/videos" rel="nofollow external" class="bo">Broad video library</a></p>
    
    <p>BE THOROUGH! The key to accessing a training opportunity at the Broad is congruency. You need to be both a scientific and cultural fit – meaning that you are motivated and enthusiastic about being creative and highly collaborative.  This is truly a unique organization, so take your time with learning what the Broad is about and really put your best foot forward in the application. The website is dense and there is a lot of “hidden” information, so go through it more than once. If you are selected for an interview, be prepared to give a talk and to  meet at least 10 people during your interview. <strong>The process is intense and competitive, but keep in mind that if you believe that you are exceptional, then you are exceptional, and it will reflect as such at all times. </strong>Don’t sell yourself short; however, be prepared to perform exceptionally when they tell you YES, you can join us as a Broadie!</p>
    <p>LaTese L. Briggs, Ph.D.</p>
    <p><em>FasterCures</em> |A Center of the Milken Institute</p>
    <p>Program Analyst</p>
    <p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
    <p><em><strong>We thank Dr. Briggs for sharing this information!</strong></em></p>
    <br>   </div>
]]>
</Body>
<Summary>The following information was shared by Dr. LaTese Briggs (PROMISE Alum, UMBC Chemistry &amp; Biochemistry, Current Program Analyst at Faster Cures.) Dr. Briggs captivated the audience of the 2013...</Summary>
<Website>https://promiseagep.wordpress.com/2013/08/21/get-ready-for-your-g-i-janeg-i-joe-moment-tips-to-land-a-fellowship-at-the-broad-institute-of-harvard-mit-by-dr-latese-briggs-promise-alum/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34490/guest@my.umbc.edu/4da2a9ef471871c5237b9afe2e043b57/api/pixel</TrackingUrl>
<Tag>academic-preparation</Tag>
<Tag>advice-for-students</Tag>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>broad-institute</Tag>
<Tag>development</Tag>
<Tag>education</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>jobs-and-funding</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>nsf</Tag>
<Tag>postdoc</Tag>
<Tag>postdoctoral-affairs</Tag>
<Tag>postdoctoral-research</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Graduate Student Development</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 21 Aug 2013 15:27:53 -0400</PostedAt>
<EditAt>Wed, 21 Aug 2013 15:27:53 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34482" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34482">
<Title>Welcome Back</Title>
<Tagline>Fall Intramurals is BACK!</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Welcome BACK!</p>
    <p>All intramural leagues and events for the upcoming fall
    semester have been posted to imleagues.com, be sure to check them out and sign
    up! More information about all the events will be posted later as well as any
    additional leagues, tournaments or changes will be posted later. I am looking
    forward to a great semester with lots of activities.</p>
    </div>
]]>
</Body>
<Summary>Welcome BACK!  All intramural leagues and events for the upcoming fall semester have been posted to imleagues.com, be sure to check them out and sign up! More information about all the events will...</Summary>
<Website>http://www.imleagues.com</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34482/guest@my.umbc.edu/3af6f099cb929a81ec49464ca3ee1b29/api/pixel</TrackingUrl>
<Group token="intramurals">Intramural Sports</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/intramurals</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/xsmall.png?1661190263</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/original.png?1661190263</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/xxlarge.png?1661190263</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/xlarge.png?1661190263</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/large.png?1661190263</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/medium.png?1661190263</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/small.png?1661190263</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/xsmall.png?1661190263</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/258/3db030c902a393b5e8603c64d88e40a8/xxsmall.png?1661190263</AvatarUrl>
<Sponsor>UMBC Intramurals</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/482/3581c5cb35d229c9ed60b39f9135f799/xxlarge.jpg?1377112132</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/034/482/3581c5cb35d229c9ed60b39f9135f799/xlarge.jpg?1377112132</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/482/3581c5cb35d229c9ed60b39f9135f799/large.jpg?1377112132</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/482/3581c5cb35d229c9ed60b39f9135f799/medium.jpg?1377112132</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/482/3581c5cb35d229c9ed60b39f9135f799/small.jpg?1377112132</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/482/3581c5cb35d229c9ed60b39f9135f799/xsmall.jpg?1377112132</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/482/3581c5cb35d229c9ed60b39f9135f799/xxsmall.jpg?1377112132</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>3</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 21 Aug 2013 15:09:24 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34478" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34478">
<Title>UMBC Training Centers Wins Inc. 500 | 5000 Award</Title>
<Tagline>Center is among America's fastest-growing private companies</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div>For the 3rd time, <a href="http://umbctraining.com/" rel="nofollow external" class="bo">UMBC Training Centers</a> has made the<a href="http://www.inc.com/inc5000/list/2013/industry/education" rel="nofollow external" class="bo"> 2013 Inc. 500|5000 list of the fastest-growing private companies in America</a>. The list represents the most comprehensive look at an important segment of the economy—America’s independent entrepreneurs. UMBC Training Centers joins LivingSocial, Edible Arrangements, CDW and Lifelock, among other prominent brands featured on this year’s list.</div>
    <div><br></div>
    <div>UMBC Training Centers <a href="http://www.inc.com/profile/umbc-training-centers" rel="nofollow external" class="bo">ranks No. 3829 </a>on the 2013 Inc. 500 | 5000 list with three-year sales growth of 74%. </div>
    <div><br></div>
    <div><br></div>
    <div><br></div>
    <div><br></div>
    </div>
]]>
</Body>
<Summary>For the 3rd time, UMBC Training Centers has made the 2013 Inc. 500|5000 list of the fastest-growing private companies in America. The list represents the most comprehensive look at an important...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34478/guest@my.umbc.edu/ae013db058075c7ba9abddd95c736bd7/api/pixel</TrackingUrl>
<Tag>training</Tag>
<Group token="dps">UMBC Professional Programs</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/dps</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/xsmall.png?1642086701</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/original.png?1642086701</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/xxlarge.png?1642086701</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/xlarge.png?1642086701</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/large.png?1642086701</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/medium.png?1642086701</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/small.png?1642086701</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/xsmall.png?1642086701</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/513/2e72ed76b7b3b9ce2f15fce64178dfaf/xxsmall.png?1642086701</AvatarUrl>
<Sponsor>Division of Professional Studies</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/478/a7ba6dde28c61d9cec9909bde1d7dca2/xxlarge.jpg?1377110110</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/478/a7ba6dde28c61d9cec9909bde1d7dca2/xlarge.jpg?1377110110</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/034/478/a7ba6dde28c61d9cec9909bde1d7dca2/large.jpg?1377110110</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/034/478/a7ba6dde28c61d9cec9909bde1d7dca2/medium.jpg?1377110110</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/034/478/a7ba6dde28c61d9cec9909bde1d7dca2/small.jpg?1377110110</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/034/478/a7ba6dde28c61d9cec9909bde1d7dca2/xsmall.jpg?1377110110</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/478/a7ba6dde28c61d9cec9909bde1d7dca2/xxsmall.jpg?1377110110</ThumbnailUrl>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Wed, 21 Aug 2013 14:36:27 -0400</PostedAt>
</NewsItem>

</News>
