<?xml version="1.0"?>
<News hasArchived="true" page="7845" pageCount="10751" pageSize="10" timestamp="Sun, 16 Aug 2026 02:26:22 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7845">
<NewsItem contentIssues="false" id="40815" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40815">
<Title>To Find Friends, Start at iPhone, Turn Left at Glass</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Friend-finding app SocialRadar is starting on the iPhone but has its sights set on Google Glass.</p>
    <p>Google <a href="https://developers.google.com/glass/policies" rel="nofollow external" class="bo">won’t approve</a> any apps for its head-worn Glass device that use facial or audio recognition to identify and learn more about the people around you. There are other ways to accomplish this, though, such as by looking at the location information in social network updates.</p>
    </div>
]]>
</Body>
<Summary>Friend-finding app SocialRadar is starting on the iPhone but has its sights set on Google Glass.  Google won’t approve any apps for its head-worn Glass device that use facial or audio recognition...</Summary>
<Website>http://www.technologyreview.com/news/524006/to-find-friends-start-at-iphone-turn-left-at-glass/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40815/guest@my.umbc.edu/b7283e73ffd273eb7bc92470de2c82b0/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 30 Jan 2014 15:28:50 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40816" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40816">
<Title>Boxes That Fill Height (Or More) (and Don&#8217;t Squish)</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>It's hard to sum up all the awesome that is flexbox in a little ol' blog post. Although we <a href="http://css-tricks.com/snippets/css/a-guide-to-flexbox/" rel="nofollow external" class="bo">gave it a shot here</a>. Here, let's just try and focus on one thing that flexbox solves very nicely: the ability to have an arbitrary set of boxes fill up all the available height of a parent box. And not only that, but expand beyond that if needed (not squish them to fit). </p>
    <p></p>
    <p>By "box", I just mean block level element. Div, section, article, whatever.</p>
    <p>By default those boxes height is determined by the content inside them. They will stack on top of each other. Their parent boxes height might also be determined by their height combined, but it could be different (e.g. it's set explicitly or it's something variable like the browser window).  If the parent box has a larger height, there will just be empty space below. </p>
    <p>Can't we force the boxes to split up the space evenly amongst that space? We can with flexbox. </p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/fill-height.svg" alt="" style="max-width: 100%; height: auto;">
    Left: default; Right: what we wanna do
    
    <p>Say the HTML is like:</p>
    <pre><code>&lt;section class="fill-height-or-more"&gt;&#x000A;      &lt;div&gt;&#x000A;        &lt;!-- stuff --&gt;&#x000A;      &lt;/div&gt;&#x000A;      &lt;div&gt;&#x000A;        &lt;!-- stuff --&gt;&#x000A;      &lt;/div&gt;&#x000A;      &lt;div&gt;&#x000A;        &lt;!-- stuff --&gt;&#x000A;      &lt;/div&gt;&#x000A;    &lt;/section&gt;</code></pre>
    <p>Then we kick off flexbox with the parent box:</p>
    <pre><code>.fill-height-or-more {&#x000A;      display: flex;&#x000A;    }</code></pre>
    <p>and make the boxes up-and-down (column) rather than left-and-right (row) as is the default:</p>
    <pre><code>.fill-height-or-more {&#x000A;      display: flex;&#x000A;      flex-direction: column;&#x000A;    }</code></pre>
    <p>With just that, it will look no different than it did if we did nothing. But now we apply the flex property to the children and they will fill the space:</p>
    <pre><code>.fill-height-or-more &gt; div {&#x000A;      /* these are the flex items */&#x000A;      flex: 1;&#x000A;    }</code></pre>
    <p>Annnnd done =).</p>
    <p>As a detail here, <code>flex: 1;</code> is the same as saying <code>flex: 1 1 auto;</code> It is shorthand for three different properties:</p>
    <pre><code>flex-grow: 1;&#x000A;    flex-shrink: 1;&#x000A;    flex-basis: auto;</code></pre>
    <p>Just so happens that giving them the ability to grow on an equal basis the most common need so <code>flex: 1;</code> is a nice way to write that.</p>
    <p>One of the nice things about flexbox is this will work with an arbitrary number of boxes. Could be a single box! Could be 100 boxes! Doesn't matter. If there is extra room, the space will be divided and filled. If not, no big deal. </p>
    <p>In a pre-flexbox world, we might have tried to know/find out how many boxes there were, and then set their heights with percentages. That works to fill extra space, but if there were too many boxes, you'd get squished. That's another nice thing about flexbox, it won't squish those boxes to the point of them not being able to fit their content. So...</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/no-squish1.svg" alt="" style="max-width: 100%; height: auto;">
    Left: if we were to use percentages; Right: Normal desired behavior
    
    <p>If we wanted to take this a step further, we could use flexbox to center the content within those boxes too (!). This is where people get mad at CSS though. Vertical centering is kinda hard. Even with flexbox here, we'll need to make each of those flex item children we have into flex containers as well. <del>Then use an internal wrapper which becomes the flex item we center. So yeah, an extra element still.</del> Update: Tedmotu <a href="http://css-tricks.com/boxes-fill-height-dont-squish/#comment-1129898" rel="nofollow external" class="bo">did it</a> without the extra element, which is really straightforward</p>
    <p>To center it, we make the direction up-and-down again (column) and use another flexbox property, <code>justify-content</code>, to center it.</p>
    <pre><code>.fill-height-or-more &gt; div {&#x000A;      flex: 1;&#x000A;    &#x000A;      display: flex&#x000A;      justify-content: center;&#x000A;      flex-direction: column;&#x000A;    }</code></pre>
    <p>This is where <a href="http://css-tricks.com/snippets/css/a-guide-to-flexbox/" rel="nofollow external" class="bo">the reference guide</a> comes in handy... finding out which property does what quickly. </p>
    <p>Then we get this:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/vertically-centered.svg" alt="" style="max-width: 100%; height: auto;">
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/Jeryz" rel="nofollow external" class="bo">Boxes That Fill Height (or more)</a> by Chris Coyier (<a href="http://codepen.io/chriscoyier" rel="nofollow external" class="bo">@chriscoyier</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <h3>Browser Support</h3>
    <p>I've only used the latest syntax here in this post. Current versions of Chrome, Opera support it just like that. Near-future versions of Firefox and Android will be supporting it just like that as well. Safari and iOS support the new syntax, just with -webkit- prefixes. <a href="http://caniuse.com/flexbox" rel="nofollow external" class="bo">Can I Use</a> has the whole story.</p>
    <p>IE is weird. IE 10 supports the tweener version of flexbox (e.g. <a href="http://css-tricks.com/old-flexbox-and-new-flexbox/" rel="nofollow external" class="bo">display: -ms-flexbox;</a>). IE 11 supports the latest flexbox. <strong>With this particular demo though,</strong> something is broken. While the height of .fill-height-or-more renders at full height by using <code>min-height</code>, the boxes are squished.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/ie11-bug.png" alt="" style="max-width: 100%; height: auto;">
    <p>If you use height instead of the flex container, it "works" - but the point here was using min-height to avoid squishing. Seems like an implementation bug to me.</p>
    <p>It's understandable that you might need to go back a bit further with browser support. Firefox 27, iOS 6, and Safari 6 are pretty legit browser support targets and all those use some variation of the older syntax, sometimes prefixed and sometimes not. </p>
    <p>Just our little example looks like this when as fleshed out as it can be for support:</p>
    <pre><code>.fill-height-or-more {&#x000A;      display: -webkit-box;&#x000A;      display: -webkit-flex;&#x000A;      display: -moz-box;&#x000A;      display: -ms-flexbox;&#x000A;      display: flex;&#x000A;      -webkit-box-orient: vertical;&#x000A;      -webkit-box-direction: normal;&#x000A;      -webkit-flex-direction: column;&#x000A;      -moz-box-orient: vertical;&#x000A;      -moz-box-direction: normal;&#x000A;      -ms-flex-direction: column;&#x000A;      flex-direction: column;&#x000A;    } &#x000A;    &#x000A;    .fill-height-or-more &gt; div {&#x000A;      -webkit-box-flex: 1;&#x000A;      -webkit-flex: 1;&#x000A;      -moz-box-flex: 1;&#x000A;      -ms-flex: 1;&#x000A;      flex: 1;&#x000A;      display: -webkit-box;&#x000A;      display: -webkit-flex;&#x000A;      display: -moz-box;&#x000A;      display: -ms-flexbox;&#x000A;      display: flex;&#x000A;      -webkit-box-pack: center;&#x000A;      -webkit-justify-content: center;&#x000A;      -moz-box-pack: center;&#x000A;      -ms-flex-pack: center;&#x000A;      justify-content: center;&#x000A;      -webkit-box-orient: vertical;&#x000A;      -webkit-box-direction: normal;&#x000A;      -webkit-flex-direction: column;&#x000A;      -moz-box-orient: vertical;&#x000A;      -moz-box-direction: normal;&#x000A;      -ms-flex-direction: column;&#x000A;      flex-direction: column;&#x000A;    }</code></pre>
    <p>Yeesh. My recommendation? Write it in the modern syntax like I have above and let <a href="http://css-tricks.com/autoprefixer/" rel="nofollow external" class="bo">Autoprefixer</a> deal with it, which not only deals with the prefixing but the older syntax as well.</p>
    <h3>Video Screencast</h3>
    <p>Might as well hey? <a href="http://css-tricks.com/video-screencasts/131-tinkering-flexbox/" rel="nofollow external" class="bo">I published it here</a> and I'll embed it also:</p>
    <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/tge9YQDAasc" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div>
    <hr>
    <p>Oh and just for the record, the real-world scenario that brought this on for me was <a href="http://codepen.io/stats/" rel="nofollow external" class="bo">this page</a>.</p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/boxes-fill-height-dont-squish/" rel="nofollow external" class="bo">Boxes That Fill Height (Or More) (and Don’t Squish)</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>It's hard to sum up all the awesome that is flexbox in a little ol' blog post. Although we gave it a shot here. Here, let's just try and focus on one thing that flexbox solves very nicely: the...</Summary>
<Website>http://css-tricks.com/boxes-fill-height-dont-squish/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40816/guest@my.umbc.edu/f7a8c3a1059011290ef0738e612319e5/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, 30 Jan 2014 15:27:29 -0500</PostedAt>
<EditAt>Thu, 30 Jan 2014 15:27:29 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40809" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40809">
<Title>Making a Difference, One Spring Break at a Time</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong>Alternative Spring Breaks</strong></p>
    <p>Spring break. For most students, it holds the promise of sunshine and freedom – an escape from the busy world of school. But for other students, spring break means a chance to learn something new and make a difference in the world. That’s where Alternative Spring Break (ASB) comes in. These week-long service trips introduce students to the broad range of challenges our society faces and teach them how they can help change things for the better. Your gift can help them do amazing work, like this:</p>
    <p><strong>Lending a Hand</strong></p>
    <p>Through the “<a href="https://givecorps.com/en/umbc/projects/890-campus-life-alternative-spring-break-will-hope-for-change" rel="nofollow external" class="bo">Will Hope for Change</a>” trip, students will work together to make a difference right here in Baltimore. This trip provides students the opportunity to help our city’s homeless residents. By working with programs that help to combat this issue, students will gain a better understanding of the struggles that come with being homeless and the impact of helping people right in your own neighborhood.</p>
    <p><strong><span><div class="embed-container"><iframe src="http://www.youtube.com/embed/zcu06C5NDbw?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div></span></strong></p>
    <p><strong>Living Green</strong></p>
    <p>UMBC students on the “<a href="https://givecorps.com/en/umbc/projects/887-campus-life-alternative-spring-break-a-better-impact" rel="nofollow external" class="bo">A Better Impact</a>” trip will spend a week exploring green spaces in Maryland and learning how to live more sustainably. Each day, students will reflect on the different aspects of sustainable living, and they’ll enjoy the rewards of promoting this lifestyle as they explore Maryland’s topography.</p>
    <p><strong><span><div class="embed-container"><iframe src="http://www.youtube.com/embed/E_WGntiBwqY?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div></span></strong></p>
    <p><strong>How Can You Help?</strong></p>
    <p>These will be special trips; the kind that students will remember for life. But they need your help to get there, quite literally.</p>
    <div>
    <p>Donations will go directly to the costs of the spring break service learning experience for 15 UMBC students. All donations collected will be used for supplies, lodging, food and transportation during the 2013-2014 ASBs. Thank you for your support!</p>
    <h2><a href="https://givecorps.com/en/umbc/projects" rel="nofollow external" class="bo">Support trips and initiatives like these!</a></h2>
    </div>
    <br>   </div>
]]>
</Body>
<Summary>Alternative Spring Breaks   Spring break. For most students, it holds the promise of sunshine and freedom – an escape from the busy world of school. But for other students, spring break means a...</Summary>
<Website>http://umbcgiving.wordpress.com/2014/01/30/alternative-spring-break/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40809/guest@my.umbc.edu/af00daf5543adbadad17fb731a4c5b94/api/pixel</TrackingUrl>
<Tag>a-better-impact</Tag>
<Tag>alternative-spring-break</Tag>
<Tag>givecorps</Tag>
<Tag>student-initiatives</Tag>
<Tag>umbc</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Tag>volunteerism</Tag>
<Tag>will-hope-for-change</Tag>
<Group token="retired-548">UMBC Giving</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-548</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/images/avatars/group/11/xsmall.png?1786447565</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/11/original.png?1786447565</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/images/avatars/group/11/xxlarge.png?1786447565</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/images/avatars/group/11/xlarge.png?1786447565</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/images/avatars/group/11/large.png?1786447565</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/images/avatars/group/11/medium.png?1786447565</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/11/small.png?1786447565</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/11/xsmall.png?1786447565</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/images/avatars/group/11/xxsmall.png?1786447565</AvatarUrl>
<Sponsor>UMBC Giving</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 30 Jan 2014 15:15:16 -0500</PostedAt>
<EditAt>Thu, 30 Jan 2014 15:15:16 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="109848" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109848">
<Title>Justin V&#233;lez-Hagan, Public Policy, in Fox News Latino</Title>
<Body>
<![CDATA[
    <div class="html-content">Puerto Rico’s creditors are meeting in New York this week to discuss concerns over inevitable debt default. Puerto Rico has more than $70 billion in outstanding debt and its debt per capita is nearly $19,000. Justin Vélez-Hagan, Public Policy Ph.D. student and executive director of The National Puerto Rican Chamber of Commerce, recently wrote an op-ed in Fox News Latino about the Puerto Rican debt crisis and provides suggestions for turning the economy around. “The initial step should be a more effective marketing campaign centered on the tax, labor, environmental, and Latin American and American market access opportunities that are second to none …</div>
]]>
</Body>
<Summary>Puerto Rico’s creditors are meeting in New York this week to discuss concerns over inevitable debt default. Puerto Rico has more than $70 billion in outstanding debt and its debt per capita is...</Summary>
<Website>https://news.umbc.edu/justin-velez-hagan-public-policy-in-fox-news-latino/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109848/guest@my.umbc.edu/010762cb0a7dc90a421743939fe7b5e4/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>publicpolicy</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, 30 Jan 2014 15:13:22 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40822" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40822">
<Title>Q&amp;A: Another Option for an Upgrade From Windows XP</Title>
<Body>
<![CDATA[
    <div class="html-content">Plus, working with multiple Apple ID accounts.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F31%2Ftechnology%2Fpersonaltech%2Fanother-option-for-an-upgrade-from-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Another+Option+for+an+Upgrade+From+Windows+XP" 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%2F01%2F31%2Ftechnology%2Fpersonaltech%2Fanother-option-for-an-upgrade-from-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Another+Option+for+an+Upgrade+From+Windows+XP" 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%2F01%2F31%2Ftechnology%2Fpersonaltech%2Fanother-option-for-an-upgrade-from-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Another+Option+for+an+Upgrade+From+Windows+XP" 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%2F01%2F31%2Ftechnology%2Fpersonaltech%2Fanother-option-for-an-upgrade-from-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Another+Option+for+an+Upgrade+From+Windows+XP" 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%2F01%2F31%2Ftechnology%2Fpersonaltech%2Fanother-option-for-an-upgrade-from-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Another+Option+for+an+Upgrade+From+Windows+XP" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>Plus, working with multiple Apple ID accounts.      </Summary>
<Website>http://www.nytimes.com/2014/01/31/technology/personaltech/another-option-for-an-upgrade-from-windows-xp.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40822/guest@my.umbc.edu/5410a679b4f7aad031e45c3c132bb2cf/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>best-buy-company-inc-bby-nyse</Tag>
<Tag>dell-inc-dell-nasdaq</Tag>
<Tag>hewlett-packard-company-hpq-nyse</Tag>
<Tag>microsoft-corporation-msft-nasdaq</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>windows-operating-system</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, 30 Jan 2014 14:59:50 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40808" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40808">
<Title>Bits Blog: Fitness Trackers: Lifeline or Flatline?</Title>
<Body>
<![CDATA[
    <div class="html-content">Readers shared their thoughts on the latest generation of fitness devices, like the Fitbit Force.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F30%2Ffitness-trackers-lifeline-or-flatline%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Fitness+Trackers%3A+Lifeline+or+Flatline%3F" 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%2Fbits.blogs.nytimes.com%2F2014%2F01%2F30%2Ffitness-trackers-lifeline-or-flatline%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Fitness+Trackers%3A+Lifeline+or+Flatline%3F" 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%2Fbits.blogs.nytimes.com%2F2014%2F01%2F30%2Ffitness-trackers-lifeline-or-flatline%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Fitness+Trackers%3A+Lifeline+or+Flatline%3F" 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%2Fbits.blogs.nytimes.com%2F2014%2F01%2F30%2Ffitness-trackers-lifeline-or-flatline%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Fitness+Trackers%3A+Lifeline+or+Flatline%3F" 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%2Fbits.blogs.nytimes.com%2F2014%2F01%2F30%2Ffitness-trackers-lifeline-or-flatline%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Fitness+Trackers%3A+Lifeline+or+Flatline%3F" 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/186529923540/u/0/f/640387/c/34625/s/368ba843/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529923540/u/0/f/640387/c/34625/s/368ba843/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186529923540/u/0/f/640387/c/34625/s/368ba843/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529923540/u/0/f/640387/c/34625/s/368ba843/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186529923540/u/0/f/640387/c/34625/s/368ba843/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529923540/u/0/f/640387/c/34625/s/368ba843/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186529923540/u/0/f/640387/c/34625/s/368ba843/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529923540/u/0/f/640387/c/34625/s/368ba843/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Readers shared their thoughts on the latest generation of fitness devices, like the Fitbit Force.      </Summary>
<Website>http://bits.blogs.nytimes.com/2014/01/30/fitness-trackers-lifeline-or-flatline/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40808/guest@my.umbc.edu/5da036fd255af10b8fdd668be27f5e43/api/pixel</TrackingUrl>
<Tag>devices</Tag>
<Tag>fitbit</Tag>
<Tag>new</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, 30 Jan 2014 14:50:37 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40806" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40806">
<Title>Transfer Student Workshop</Title>
<Tagline>How to Get Started in Research Right Away; February 5th</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Interested in doing research? Come to our workshop on Wednesday, February 5th from 12-12:50pm in Sherman Hall 108 to learn how you can get started!<br>
    </div>
]]>
</Body>
<Summary>Interested in doing research? Come to our workshop on Wednesday, February 5th from 12-12:50pm in Sherman Hall 108 to learn how you can get started!</Summary>
<Website>http://www.umbc.edu/undergrad_ed/research/workshops.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40806/guest@my.umbc.edu/95e2864f5c0d4081eb6fe2924a377bb5/api/pixel</TrackingUrl>
<Group token="undergradresearch">Undergraduate Research</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/undergradresearch</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/original.jpg?1600355057</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/large.png?1600355057</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/medium.png?1600355057</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/small.png?1600355057</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxsmall.png?1600355057</AvatarUrl>
<Sponsor>Undergraduate Research</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/040/806/93ec172e6e6a9fe1a9cc28b71c7525e4/xxlarge.jpg?1391108267</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/040/806/93ec172e6e6a9fe1a9cc28b71c7525e4/xlarge.jpg?1391108267</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/040/806/93ec172e6e6a9fe1a9cc28b71c7525e4/large.jpg?1391108267</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/040/806/93ec172e6e6a9fe1a9cc28b71c7525e4/medium.jpg?1391108267</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/040/806/93ec172e6e6a9fe1a9cc28b71c7525e4/small.jpg?1391108267</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/040/806/93ec172e6e6a9fe1a9cc28b71c7525e4/xsmall.jpg?1391108267</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/040/806/93ec172e6e6a9fe1a9cc28b71c7525e4/xxsmall.jpg?1391108267</ThumbnailUrl>
<PawCount>16</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 30 Jan 2014 13:58:35 -0500</PostedAt>
<EditAt>Thu, 30 Jan 2014 13:59:26 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="109849" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109849">
<Title>Dr. Kenneth Gibbs &#8217;05, Biochemistry and Molecular Biology, in Science Magazine</Title>
<Body>
<![CDATA[
    <div class="html-content">Most new Ph.D.s in science are encouraged to pursue tenure-track faculty positions. Dr. Kenneth Gibbs felt pressured to follow that path, but instead he decided to explore a career in science policy in order to more directly impact society. Dr. Gibbs recounts his professional journey and shares advice for future scientists in an essay in Science Magazine, entitled “Planning a Career in Today’s Landscape.” As a member of the 13th Meyerhoff cohort, Dr. Gibbs majored in Biochemistry and Molecular Biology. He then completed a Ph.D. in Immunology at Stanford. Currently, Dr. Gibbs is a part of the Cancer Prevention Fellowship …</div>
]]>
</Body>
<Summary>Most new Ph.D.s in science are encouraged to pursue tenure-track faculty positions. Dr. Kenneth Gibbs felt pressured to follow that path, but instead he decided to explore a career in science...</Summary>
<Website>https://news.umbc.edu/dr-kenneth-gibbs-05-biochemistry-and-molecular-biology-in-science-magazine/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109849/guest@my.umbc.edu/cfa23c9f09f3f78bde30661223b733fe/api/pixel</TrackingUrl>
<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, 30 Jan 2014 13:39:25 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109850" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109850">
<Title>Donald Norris, Public Policy, in The Washington Post</Title>
<Body>
<![CDATA[
    <div class="html-content">Larry Hogan, the leader of watchdog group Change Maryland and former appointments secretary under Gov. Robert Ehrlich, kicked off his campaign in the Republican primary for governor on Wednesday. Public Policy Professor and Chair Donald Norris was interviewed for an article in The Washington Post about Hogan’s announcement. He said whoever the winner of the Republican primary is faces an uphill battle unless a serious mistake is committed by the Democratic candidate. “In a statewide race in Maryland, a good Democrat running a good campaign beats a good Republican running a good campaign every time,” Norris said. You can read the full …</div>
]]>
</Body>
<Summary>Larry Hogan, the leader of watchdog group Change Maryland and former appointments secretary under Gov. Robert Ehrlich, kicked off his campaign in the Republican primary for governor on Wednesday....</Summary>
<Website>https://news.umbc.edu/donald-norris-public-policy-in-the-washington-post-6/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109850/guest@my.umbc.edu/4497dbd74cedfc3360f9fa33cac3035e/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>publicpolicy</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, 30 Jan 2014 13:36:26 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40807" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40807">
<Title>Another Super Bowl Ad Fest, This Time on the Cellphone</Title>
<Body>
<![CDATA[
    <div class="html-content">This year, a new kind of advertising — personalized and based on physical location down to a matter of feet — will greet fans in Times Square and MetLife Stadium, where the Super Bowl will be played this weekend.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F31%2Ftechnology%2FFor-Super-Bowl-Personalized-Phone-Alerts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Another+Super+Bowl+Ad+Fest%2C+This+Time+on+the+Cellphone" 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%2F01%2F31%2Ftechnology%2FFor-Super-Bowl-Personalized-Phone-Alerts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Another+Super+Bowl+Ad+Fest%2C+This+Time+on+the+Cellphone" 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%2F01%2F31%2Ftechnology%2FFor-Super-Bowl-Personalized-Phone-Alerts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Another+Super+Bowl+Ad+Fest%2C+This+Time+on+the+Cellphone" 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%2F01%2F31%2Ftechnology%2FFor-Super-Bowl-Personalized-Phone-Alerts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Another+Super+Bowl+Ad+Fest%2C+This+Time+on+the+Cellphone" 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%2F01%2F31%2Ftechnology%2FFor-Super-Bowl-Personalized-Phone-Alerts.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Another+Super+Bowl+Ad+Fest%2C+This+Time+on+the+Cellphone" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>This year, a new kind of advertising — personalized and based on physical location down to a matter of feet — will greet fans in Times Square and MetLife Stadium, where the Super Bowl will be...</Summary>
<Website>http://www.nytimes.com/2014/01/31/technology/For-Super-Bowl-Personalized-Phone-Alerts.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40807/guest@my.umbc.edu/ac1441e7dc858ed004b4c288a9e1072d/api/pixel</TrackingUrl>
<Tag>advertising-and-marketing</Tag>
<Tag>amazon-com-inc-amzn-nasdaq</Tag>
<Tag>american-eagle-outfitters-inc-aeo-nyse</Tag>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>at-and-t-inc-t-nyse</Tag>
<Tag>google-inc-goog-nasdaq</Tag>
<Tag>major-league-baseball</Tag>
<Tag>mobile-applications</Tag>
<Tag>national-football-league</Tag>
<Tag>new</Tag>
<Tag>new-york-city</Tag>
<Tag>qualcomm-inc-qcom-nasdaq</Tag>
<Tag>super-bowl</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, 30 Jan 2014 13:11:03 -0500</PostedAt>
<EditAt>Thu, 30 Jan 2014 13:11:03 -0500</EditAt>
</NewsItem>

</News>
