<?xml version="1.0"?>
<News hasArchived="true" page="7769" pageCount="10784" pageSize="10" timestamp="Wed, 02 Sep 2026 00:59:33 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7769&amp;range=2">
<NewsItem contentIssues="true" id="41938" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41938">
<Title>Basics of CSS Blend Modes</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Bennett Feely has been doing a good job of <a href="https://medium.com/p/6b51bf53743a" rel="nofollow external" class="bo">showing people the glory of CSS blend modes</a>. There are lots of designerly effects that we're used to seeing in static designs (thanks to Photoshop) that we don't see on the web much, with dynamic content. But that will change as CSS blend modes get more support. I'd like to look at the different ways of doing it, since it's not exactly cut and dry.</p>
    <p></p>
    <h3>CSS Multiple Backgrounds Blend Modes</h3>
    <p>You can blend <code>background-image</code>s together, or blend them with background-color. It's a simple as:</p>
    <pre><code>.blended {&#x000A;      background-image: url(face.jpg);&#x000A;      background-color: red;&#x000A;      background-blend-mode: multiply;&#x000A;    }</code></pre>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/aBIAc" rel="nofollow external" class="bo">Background Blending</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>
    <p>Multiply is <a href="http://www.subtraction.com/2013/08/22/recreating-photoshop-blend-modes" rel="nofollow external" class="bo">a nice and useful one</a>, but there is also: <code>screen</code>, <code>overlay</code>, <code>darken</code>, <code>lighten</code>, <code>color-dodge</code>, <code>color-burn</code>, <code>hard-light</code>, <code>soft-light</code>, <code>difference</code>, <code>exclusion</code>, <code>hue</code>, <code>saturation</code>, <code>color</code>, and <code>luminosity</code>. And also <code>normal</code> which reset it. </p>
    <p>Adobe (who works on <a href="http://dev.w3.org/fxtf/compositing-1/" rel="nofollow external" class="bo">the spec</a> for this stuff, of course) created this Pen for playing with the different possiblities here:</p>
    <p>See the Pen <a href="http://codepen.io/adobe/pen/FeiCp" rel="nofollow external" class="bo">CSS Element Background Blend Modes</a> by Adobe Web Platform (<a href="http://codepen.io/adobe" rel="nofollow external" class="bo">@adobe</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>A single element can have more than one background, <a href="http://css-tricks.com/stacking-order-of-multiple-backgrounds/" rel="nofollow external" class="bo">stacked up</a>. Like:</p>
    <pre><code>.graphic-or-whatever {&#x000A;      background:&#x000A;        url(grid.png),&#x000A;        url(building.jpg)&#x000A;    }</code></pre>
    <p>Those can blend too simply by adding a <code>background-blend-mode</code>.</p>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/eDJpi" rel="nofollow external" class="bo">Multiple Background Blending</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>
    <p>Here's a cool and practical example by Bennett Feely:</p>
    <p>See the Pen <a href="http://codepen.io/bennettfeely/pen/rxoAc" rel="nofollow external" class="bo">rxoAc</a> by Bennett Feely (<a href="http://codepen.io/bennettfeely" rel="nofollow external" class="bo">@bennettfeely</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <p>Here's another, which cleverly re-combines a color image separated into Cyan / Magenta / Yellow / Black parts (CMYK). You know that's how offset lithography works in print, right? =)</p>
    <p>See the Pen <a href="http://codepen.io/bennettfeely/pen/qBJyj" rel="nofollow external" class="bo">CMY/CMYK Color printing with background-blend-mode</a> by Bennett Feely (<a href="http://codepen.io/bennettfeely" rel="nofollow external" class="bo">@bennettfeely</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <h3>Arbitrary HTML Elements Blend Modes</h3>
    <p>Blending backgrounds together is pretty cool, but personally I'm less excited about that than I am about blending arbitrary HTML elements together. Like a <code>&lt;h1&gt;</code> title over a background, for example. Or even text over text. </p>
    <p>I saw this at an airport the other day and snapped a pic because I thought it looked neat and figured I could figure out how to do it on the web:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/02/hungry.jpg" alt="" style="max-width: 100%; height: auto;">
    <p>My first attempt to recreate it, I used opacity. But opacity really dulls the colors and doesn't make those overlapping bits have the extra darkness they should have. CJ Gammon <a href="http://codepen.io/cjgammon/pen/nEzpj" rel="nofollow external" class="bo">showed me</a> there is a blending property precicely for this purpose: <code>mix-blend-mode</code>.</p>
    <p>So to reproduce this:</p>
    <pre><code>&lt;h1&gt;hungry?&lt;/h1&gt;</code></pre>
    <p>Then break it up into <code></code>s with <a href="http://letteringjs.com/" rel="nofollow external" class="bo">Lettering.js</a>:</p>
    <pre><code>$("h1").lettering();</code></pre>
    <p>Then squeeze the letters together with negative letter-spacing, set the mix-blend-mode, and colorize:</p>
    <pre><code>h1 {&#x000A;      font-size: 7rem;&#x000A;      font-weight: 700;&#x000A;      letter-spacing: -1.25rem;&#x000A;    }&#x000A;    h1 span {&#x000A;      mix-blend-mode: multiply;&#x000A;    }&#x000A;    h1 span:nth-child(1) {&#x000A;      color: rgba(#AB1795, 0.75);&#x000A;    }&#x000A;    /* etc, on coloring */</code></pre>
    <p>Compare:</p>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/mvbpJ" rel="nofollow external" class="bo">Overlapping Letters</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>
    <p>Like I mentioned, real web text over image is a pretty sweet use case if you ask me:</p>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/GxlBm" rel="nofollow external" class="bo">GxlBm</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>Canvas Blend Modes</h3>
    <p>The DOM blend mode stuff is most interesting to me, but it should be noted that <code>&lt;canvas&gt;</code> has blend modes as well and it has a bit deeper support (see below for all that). </p>
    <p>You set it on the canvas context. So like:</p>
    <pre><code>var canvas = document.getElementById('canvas');&#x000A;    var ctx = canvas.getContext('2d');&#x000A;    &#x000A;    ctx.globalCompositeOperation = 'multiply';</code></pre>
    <p>That value can be any of those I listed above. Here's a simple demo:</p>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/Kkliq" rel="nofollow external" class="bo">canvas blend modes</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>
    <p>And a fancy one where you can see the blending give the demo life:</p>
    <p>See the Pen <a href="http://codepen.io/soulwire/pen/foktm" rel="nofollow external" class="bo">sketch.js Demo</a> by Justin Windle (<a href="http://codepen.io/soulwire" rel="nofollow external" class="bo">@soulwire</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <h3>SVG Blend Modes</h3>
    <p>As you might suspect, SVG does have its own mechanism for doing this. One way to do it is to define it within the <code>&lt;svg&gt;</code> itself, and it's fairly complicated:</p>
    <pre><code>&lt;svg&gt;&#x000A;      &#x000A;      &lt;defs&gt;&#x000A;        &#x000A;        &lt;filter id="f1" x="0" y="0" width="1" height="1"&gt;&#x000A;          &lt;feImage xlink:href="#p1" result="p1"/&gt;&#x000A;          &lt;feImage xlink:href="#p2" result="p2"/&gt;&#x000A;          &lt;feBlend mode="multiply" in="p1" in2="p2" /&gt;&#x000A;        &lt;/filter&gt;&#x000A;        &#x000A;        &lt;path id="p1" d='M100 100 L200 100 L200 200 L100 200 Z' fill='#00FFFF'/&gt;&#x000A;        &lt;path id="p2" d='M150 150 L250 150 L250 250 L150 250 Z' fill='#CC3300'/&gt;&#x000A;        &#x000A;      &lt;/defs&gt;&#x000A;      &#x000A;      &lt;rect width="100%" height="100%" filter="url(#f1)"/&gt;&#x000A;      &#x000A;    &lt;/svg&gt;</code></pre>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/Fnvdp" rel="nofollow external" class="bo">Fnvdp</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>
    <p>And <a href="http://codepen.io/chriscoyier/pen/tCykv" rel="nofollow external" class="bo">a more complex example</a>.</p>
    <p>The good news is that <code>mix-blend-mode</code> will work on inline SVG. So if you're using SVG that way, you can target the shapes themselves with classes or whatever and give them whatever blend mode you want.</p>
    <p>Here's an example by Bennet that does just that:</p>
    <p>See the Pen <a href="http://codepen.io/bennettfeely/pen/KDkCj" rel="nofollow external" class="bo">KDkCj</a> by Bennett Feely (<a href="http://codepen.io/bennettfeely" rel="nofollow external" class="bo">@bennettfeely</a>) on <a href="http://codepen.io" rel="nofollow external" class="bo">CodePen</a>.</p>
    <h3>Browser Support</h3>
    <p><a href="http://caniuse.com/#feat=canvas-blending" rel="nofollow external" class="bo">For canvas:</a> Firefox 20+, Chrome 30+, Safari 6.1+, Opera 17+, iOS 7+, Android 4.4+. Worst bad news: No IE.</p>
    <p><a href="http://caniuse.com/#feat=css-backgroundblendmode" rel="nofollow external" class="bo">For HTML/CSS:</a> Firefox 30+, Chrome 35+, Safari 6.1 (apparently not 7?). Not quite as supported as canvas.</p>
    <p>At this second, for Chrome, you'll have to run Canary, go to <a href="chrome://flags/">chrome://flags/</a> and enable "experimental Web Platform features".</p>
    <p>This actually it a bit more complicated, so if you really want to dig in and know about support, check out the <a href="http://html.adobe.com/webplatform/graphics/blendmodes/browser-support/" rel="nofollow external" class="bo">Support Matrix</a> from Adobe.</p>
    <h3>Progressive Enhancement</h3>
    <p>What is nice about blending is that the whole point is designerly effects. If they aren't supported, you can take care to make sure the fallback is still readable. E.g. the whole idea of progressive enhancement.</p>
    <p>Here's <a href="http://adactio.com/journal/6692/" rel="nofollow external" class="bo">a recent thought</a> by Jeremy Keith:</p>
    <blockquote><p>It is entirely possible—nay, desirable—to use features long before they are supported in every browser. That’s how we move the web forward.</p></blockquote>
    <p>So one way to do support is to look at the design in a non-supporting browser and if it is still readable/usable, you're good, no further action required. </p>
    <p>If the result ends up unreadable/unusable, you could tweak things around until they are, or run a test to determine support and do something specific in the case of non-support.</p>
    <p>To test for support, I guess you could do test for the property you want to use:</p>
    <pre><code>var supportsMixBlendMode = window.getComputedStyle(document.body).mixBlendMode;&#x000A;    &#x000A;    var supportsBackgroundBlendMode = window.getComputedStyle(document.body).backgroundBlendMode;</code></pre>
    <p>If the returned value is "normal" (or anything other than <code>undefined</code>) support is there, otherwise not. Then probably apply a class to the <code>&lt;html&gt;</code> element so you can know that and use it anywhere in your CSS to adjust things, Modernizr style. Perhaps they'll even do a test for it in the future. </p>
    <p>Unless it's not that simple in which case let me know. </p>
    <hr>
    <p>Need more ideas? Check out <a href="http://codepen.io/collection/Kgshi/" rel="nofollow external" class="bo">this collection</a>. Happy blending!</p>
    <hr>
    <p><small><a href="http://css-tricks.com/basics-css-blend-modes/" rel="nofollow external" class="bo">Basics of CSS Blend Modes</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>Bennett Feely has been doing a good job of showing people the glory of CSS blend modes. There are lots of designerly effects that we're used to seeing in static designs (thanks to Photoshop) that...</Summary>
<Website>http://css-tricks.com/basics-css-blend-modes/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41938/guest@my.umbc.edu/bb6b8e1129e76bb263a517f5f04030c2/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>Fri, 28 Feb 2014 17:23:44 -0500</PostedAt>
<EditAt>Fri, 28 Feb 2014 17:23:44 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41929" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41929">
<Title>NEW! Full-Time Jobs for CAHSS Students</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <div>During the last week, multiple full-time jobs have been posted to UMBCworks forstudents like you! Check them out (plus many, many more opportunities) bylogging in to UMBCworks today.</div>
    <div><br></div>
    <div>ID: 9258441 –</div>
    <div>EMT Basic (Hart to Heart Transportation, Inc.)</div>
    <div><br></div>
    <div>ID: 9258575 – </div>
    <div>Match Teacher Residency in Boston (Match Education)</div>
    <div><br></div>
    <div>ID: 9259081 –</div>
    <div>Regional Business Development Executive in Healthcare (Synaptic Advisory Partners)</div>
    <div><br></div>
    <div>ID: 9260345 –</div>
    <div>Health Data Analyst (Quality Health Strategies / Health Integrity LLC)</div>
    <div><br></div>
    <div>ID: 9261941 – </div>
    <div>Instructional Content Specialist (Johns Hopkins Hospital - Armstrong Institute for Patient Safety)</div>
    <div><br></div>
    <div>ID: 9261982 – </div>
    <div>Intake Coordinator and Intercountry Case Manager (International Social Service - USA Branch)</div>
    <div><br></div>
    <div>ID: 9262174 –</div>
    <div>Private Music Teacher, Independent Contractor (Music &amp; Arts)</div>
    <div><br></div>
    <div>ID: 9258491 –</div>
    <div>Office Coordinator and Manager (Flinja)</div>
    <div><br></div>
    <div>ID: 9259090 –</div>
    <div>Marketing Generalist, Entry level(Carahsoft Technology Corp)</div>
    <div><br></div>
    <div><br></div>
    <div>To access these positions, log in to your UMBCworks account (via the link in the Jobs</div>
    <div>&amp; Internships Topic inmyUMBC) and find details and application instructions</div>
    <div>as well ashundreds of other job postings! </div>
    <div><br></div>
    <div>Please note you MUST have an approved resume to apply to positions. To schedule an appointment, click on "Request a Counseling Appointment" via the UMBCworks homepage or call 410-455-2216.</div>
    </div>
]]>
</Body>
<Summary>During the last week, multiple full-time jobs have been posted to UMBCworks forstudents like you! Check them out (plus many, many more opportunities) bylogging in to UMBCworks today.     ID:...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41929/guest@my.umbc.edu/c0176cf843239da1323f9791ced15dfb/api/pixel</TrackingUrl>
<Group token="careers">Career Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/careers</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/original.jpg?1411655278</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/large.png?1411655278</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/medium.png?1411655278</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/small.png?1411655278</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxsmall.png?1411655278</AvatarUrl>
<Sponsor>Career Services Center</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/929/e07e906faae382a0abbf22583949f917/xxlarge.jpg?1393624275</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/929/e07e906faae382a0abbf22583949f917/xlarge.jpg?1393624275</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/929/e07e906faae382a0abbf22583949f917/large.jpg?1393624275</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/929/e07e906faae382a0abbf22583949f917/medium.jpg?1393624275</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/929/e07e906faae382a0abbf22583949f917/small.jpg?1393624275</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/929/e07e906faae382a0abbf22583949f917/xsmall.jpg?1393624275</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/929/e07e906faae382a0abbf22583949f917/xxsmall.jpg?1393624275</ThumbnailUrl>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Feb 2014 16:51:52 -0500</PostedAt>
<EditAt>Sun, 02 Mar 2014 20:21:10 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41928" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41928">
<Title>Professor Gonzalves is featured in UMBC Magazine</Title>
<Tagline>An interview with Max Cole and Prof. Michelle Scott (HIST)</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Music is more than entertainment. It is woven inextricably into the fabric of our culture – and investigating that complex weave can tell us many things about ourselves. Theodore Gonzalves, an associate professor (and chair) of American studies and Michelle Scott,  an associate professor of history, have both received Smithsonian Institution fellowships to study music’s cultural impact. They talked recently about why that research is so important.<br>
    </div>
]]>
</Body>
<Summary>Music is more than entertainment. It is woven inextricably into the fabric of our culture – and investigating that complex weave can tell us many things about ourselves. Theodore Gonzalves, an...</Summary>
<Website>http://umbcmagazine.wordpress.com/umbc-magazine-winter-2014/back-story-winter-2014/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41928/guest@my.umbc.edu/1e98d45ad13d8a01c60f37970edabb73/api/pixel</TrackingUrl>
<Group token="amst">American Studies Department</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/amst</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/xsmall.png?1700059172</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/original.png?1700059172</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/xxlarge.png?1700059172</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/xlarge.png?1700059172</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/large.png?1700059172</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/medium.png?1700059172</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/small.png?1700059172</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/xsmall.png?1700059172</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/571/f1a862c4a5a31b363f857fee1e038fea/xxsmall.png?1700059172</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/928/77a86db24f4897976c3b8879b4f3d47a/xxlarge.jpg?1393624066</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/928/77a86db24f4897976c3b8879b4f3d47a/xlarge.jpg?1393624066</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/928/77a86db24f4897976c3b8879b4f3d47a/large.jpg?1393624066</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/928/77a86db24f4897976c3b8879b4f3d47a/medium.jpg?1393624066</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/928/77a86db24f4897976c3b8879b4f3d47a/small.jpg?1393624066</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/928/77a86db24f4897976c3b8879b4f3d47a/xsmall.jpg?1393624066</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/928/77a86db24f4897976c3b8879b4f3d47a/xxsmall.jpg?1393624066</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Feb 2014 16:48:04 -0500</PostedAt>
<EditAt>Fri, 28 Feb 2014 16:50:15 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41936" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41936">
<Title>DealBook: The Best of the Week&#8217;s eBay Barbs</Title>
<Body>
<![CDATA[
    <div class="html-content">“The C.E.O. seems to be completely asleep,” “Mr. Icahn’s attacks are false and misleading” and other highlights from the war of words between Carl C. Icahn and eBay this week.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F02%2F28%2Fthe-best-of-the-weeks-ebay-barbs%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Best+of+the+Week%E2%80%99s+eBay+Barbs" 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%2Fdealbook.nytimes.com%2F2014%2F02%2F28%2Fthe-best-of-the-weeks-ebay-barbs%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Best+of+the+Week%E2%80%99s+eBay+Barbs" 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%2Fdealbook.nytimes.com%2F2014%2F02%2F28%2Fthe-best-of-the-weeks-ebay-barbs%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Best+of+the+Week%E2%80%99s+eBay+Barbs" 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%2Fdealbook.nytimes.com%2F2014%2F02%2F28%2Fthe-best-of-the-weeks-ebay-barbs%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Best+of+the+Week%E2%80%99s+eBay+Barbs" 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%2Fdealbook.nytimes.com%2F2014%2F02%2F28%2Fthe-best-of-the-weeks-ebay-barbs%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+The+Best+of+the+Week%E2%80%99s+eBay+Barbs" 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/187558352124/u/0/f/640387/c/34625/s/37a7fce1/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187558352124/u/0/f/640387/c/34625/s/37a7fce1/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/187558352124/u/0/f/640387/c/34625/s/37a7fce1/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187558352124/u/0/f/640387/c/34625/s/37a7fce1/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/187558352124/u/0/f/640387/c/34625/s/37a7fce1/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187558352124/u/0/f/640387/c/34625/s/37a7fce1/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/187558352124/u/0/f/640387/c/34625/s/37a7fce1/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187558352124/u/0/f/640387/c/34625/s/37a7fce1/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>“The C.E.O. seems to be completely asleep,” “Mr. Icahn’s attacks are false and misleading” and other highlights from the war of words between Carl C. Icahn and eBay this week.      </Summary>
<Website>http://dealbook.nytimes.com/2014/02/28/the-best-of-the-weeks-ebay-barbs/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41936/guest@my.umbc.edu/ba65e90986a61681b93f0a653e59342b/api/pixel</TrackingUrl>
<Tag>andreessen-horowitz</Tag>
<Tag>andreessen-marc-l</Tag>
<Tag>boards-of-directors</Tag>
<Tag>cook-scott</Tag>
<Tag>corporate-governance</Tag>
<Tag>donahoe-john-j</Tag>
<Tag>ebay-inc</Tag>
<Tag>ebay-inc-ebay-nasdaq</Tag>
<Tag>hedge-funds</Tag>
<Tag>icahn-carl-c</Tag>
<Tag>intuit-inc</Tag>
<Tag>intuit-inc-intu-nasdaq</Tag>
<Tag>new</Tag>
<Tag>omidyar-pierre-m</Tag>
<Tag>paypal</Tag>
<Tag>skype-technologies</Tag>
<Tag>technology</Tag>
<Tag>thiel-peter-a</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Feb 2014 16:39:06 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="41927" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41927">
<Title>The latest JCET Newsletter is available.</Title>
<Body>
<![CDATA[
    <div class="html-content">Check it out <a href="http://jcet.umbc.edu/files/2014/02/JCET-Newsletter-Winter-2014-Vol-12-Iss-1.pdf" rel="nofollow external" class="bo">here</a>!</div>
]]>
</Body>
<Summary>Check it out here!</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41927/guest@my.umbc.edu/8cf14b436ab3d6b625182eeb659acd32/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>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Feb 2014 16:37:55 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="41930" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41930">
<Title>Seven Must-Read Stories (Week Ending February 28, 2014)</Title>
<Body>
<![CDATA[
    <div class="html-content"><p>Another chance to catch the most interesting, and important, articles from the previous week on <em>MIT Technology Review</em>.</p></div>
]]>
</Body>
<Summary>Another chance to catch the most interesting, and important, articles from the previous week on MIT Technology Review.</Summary>
<Website>http://www.technologyreview.com/view/525026/seven-must-read-stories-week-ending-february-28-2014/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41930/guest@my.umbc.edu/491c40bb48f8ab59b7e6de63e1c7e10e/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>Fri, 28 Feb 2014 15:40:00 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41921" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41921">
<Title>Volunteer for URCAD 2014</Title>
<Body>
<![CDATA[
    <div class="html-content">Looking for ways to volunteer on campus?  <br><br>URCAD 2014 could use your help!<br><br>Undergraduate Research and Creative Achievement Day is coming to UMBC on Wednesday, April 23, 2014.  For this day to be a success, we need upwards of 100 volunteers to contribute their time and talents.  Opportunities to serve are available on April 23 as well as on the days before and after.<br><br>To obtain more details about specific roles and to sign up, please visit <a href="http://www.umbc.edu/undergrad_ed/research/URCAD/volunteer.html">http://www.umbc.edu/undergrad_ed/research/URCAD/volunteer.html</a>, review the volunteer positions and complete the form.<br><br>Volunteering at URCAD is also a great way to meet prospective research mentors and learn more about on-campus research opportunities.<br><br>Student organizations are also encouraged to volunteer as a group service project.<br><br>Staff and faculty are also welcome!<br><br>Questions? Contact Kerry Kidwell-Slak at <a href="mailto:kerryk@umbc.edu">kerryk@umbc.edu</a>.<br>
    </div>
]]>
</Body>
<Summary>Looking for ways to volunteer on campus?    URCAD 2014 could use your help!  Undergraduate Research and Creative Achievement Day is coming to UMBC on Wednesday, April 23, 2014.  For this day to be...</Summary>
<Website>http://www.umbc.edu/undergrad_ed/research/URCAD/volunteer.html</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41921/guest@my.umbc.edu/88ef28d966c419c7c1c4e95579b8f226/api/pixel</TrackingUrl>
<Group token="careers">Career Center</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/careers</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/original.jpg?1411655278</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xlarge.png?1411655278</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/large.png?1411655278</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/medium.png?1411655278</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/small.png?1411655278</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xsmall.png?1411655278</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/018/729f2c7eeeab66f50f4ab3677539a585/xxsmall.png?1411655278</AvatarUrl>
<Sponsor>Career Services Center</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/921/5eff46c7fc603910e15eb944d97c13c0/xxlarge.jpg?1393617782</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/921/5eff46c7fc603910e15eb944d97c13c0/xlarge.jpg?1393617782</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/921/5eff46c7fc603910e15eb944d97c13c0/large.jpg?1393617782</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/921/5eff46c7fc603910e15eb944d97c13c0/medium.jpg?1393617782</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/921/5eff46c7fc603910e15eb944d97c13c0/small.jpg?1393617782</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/921/5eff46c7fc603910e15eb944d97c13c0/xsmall.jpg?1393617782</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/921/5eff46c7fc603910e15eb944d97c13c0/xxsmall.jpg?1393617782</ThumbnailUrl>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 28 Feb 2014 15:04:08 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41925" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41925">
<Title>Ways to Give: Support the Annual Fund</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><span><br>
    </span><img alt="academic row" src="http://umbcgiving.files.wordpress.com/2014/02/academic-row.jpg?w=168&amp;h=210" width="168" height="210" style="max-width: 100%; height: auto;"><span>When we talk with our alumni, they often tell us UMBC not only taught them what they needed to earn a degree, but also what they needed to live their lives in an engaged, active way. </span></p>
    <p><span>For some, all it took was the special attention of an extraordinary teacher. Fo</span><span>r others, it was the chance brush with another culture that caused a sea change of perspective. </span></p>
    <p><span>Think about ways UMBC has enriched yo</span><span>ur life. Now, imagine a university where everyone knew its worth in their lives – and what might happen if each of those people supported it at whatever level they could. Every year.</span></p>
    <p><img alt="umbc students" src="http://umbcgiving.files.wordpress.com/2014/02/umbc-students.jpg?w=210&amp;h=139" width="210" height="139" style="max-width: 100%; height: auto;"></p>
    <p><span><strong>Imagine what we could all do together.</strong> You </span><span>know that every little bit counts, but it becomes even clearer when you see what might be possible if each of UMBC’s more than 60,000 alumni made a gift in support of UMBC’s Annual Fund. </span>The results would be phenomenal:</p>
    <ul>
    <li>If every alum gave $10, UMBC would have $600,000 to fund new scholarships, research opportunities, faculty training, and more…</li>
    <li>If every alum gave $15, UMBC would have $900,000…</li>
    <li>If every alum gave $20, UMBC would have $1.2 million…</li>
    </ul>
    <p><img alt="dancers" src="http://umbcgiving.files.wordpress.com/2014/02/dancers.jpg?w=180&amp;h=169" width="180" height="169" style="max-width: 100%; height: auto;"></p>
    <p>And it only takes one person to start the movement. When you make your gift to the annual fund, you’re making a public and important show of support.</p>
    <p>Annual fund gifts have an immediate and direct impact on academic and other resources for our students. <strong>Did you know that state funds provide less than 25% of the university’s operating budget?</strong> And that tuition and fees alone do not cover the full cost of a UMBC education?</p>
    <p>That’s why your gift to the department, area, or program you care most about helps keep a UMBC education within reach for our students and families.</p>
    <p><span><a href="http://umbcgiving.files.wordpress.com/2014/02/science.jpg" rel="nofollow external" class="bo"><img alt="science" src="http://umbcgiving.files.wordpress.com/2014/02/science.jpg?w=240&amp;h=160" width="240" height="160" style="max-width: 100%; height: auto;"></a><strong>We are extremely proud of and honored by the support we receive each year.</strong> We are amazed at the generosity of UMBC’s supporters, from alumni, faculty and staff to friends of the university, corporations, foundations, parents and even current students themselves. We know that your gifts are an indication of your belief in the work that we do here and the potential of our amazing students. </span></p>
    <h2><a href="http://alumni.umbc.edu/support" rel="nofollow external" class="bo"><span>Change lives. Make a gift to the annual fund today!</span></a></h2>
    <br>   </div>
]]>
</Body>
<Summary>When we talk with our alumni, they often tell us UMBC not only taught them what they needed to earn a degree, but also what they needed to live their lives in an engaged, active way.    For some,...</Summary>
<Website>http://umbcgiving.wordpress.com/2014/02/28/ways-to-give-support-the-annual-fund/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41925/guest@my.umbc.edu/e9e73867b0e2262cce809e4fe343da7b/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Tag>annual-giving</Tag>
<Tag>corporations-and-foundations</Tag>
<Tag>current-students</Tag>
<Tag>faculty-and-staff</Tag>
<Tag>friends-of-umbc</Tag>
<Tag>how-you-can-help</Tag>
<Tag>how-you-make-a-difference</Tag>
<Tag>our-donors</Tag>
<Tag>parents</Tag>
<Tag>umbc</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Tag>ways-to-give</Tag>
<Group token="retired-548">UMBC Giving</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-548</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/images/avatars/group/11/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/images/avatars/group/11/original.png?1787842820</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/images/avatars/group/11/xxlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/images/avatars/group/11/xlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/images/avatars/group/11/large.png?1787842820</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/images/avatars/group/11/medium.png?1787842820</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/11/small.png?1787842820</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/images/avatars/group/11/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/images/avatars/group/11/xxsmall.png?1787842820</AvatarUrl>
<Sponsor>UMBC Giving</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Feb 2014 14:55:38 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="109813" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109813">
<Title>President Hrabowski Participates in Launch of White House Initiative</Title>
<Body>
<![CDATA[
    <div class="html-content">On Thursday, February 27, President Obama launched My Brother’s Keeper, a White House initiative that empowers young men of color. My Brother’s Keeper will partner with businesses, government officials, faith leaders, non-profit organizations and private groups. These groups have pledged to invest in programs aimed at helping men of color, and replicate successful efforts across the country. Dr. Hrabowski, chair of the President’s Advisory Commission on Educational Excellence for African Americans, attended the event along with national leaders including General Colin Powell, former New York City Mayor Michael Bloomberg and Congresswoman Marcia Fudge. At the event, President Obama said, “Government …</div>
]]>
</Body>
<Summary>On Thursday, February 27, President Obama launched My Brother’s Keeper, a White House initiative that empowers young men of color. My Brother’s Keeper will partner with businesses, government...</Summary>
<Website>https://news.umbc.edu/president-hrabowski-participates-in-launch-of-white-house-initiative/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109813/guest@my.umbc.edu/62efb5e4c831a6614a606000fe56ab1c/api/pixel</TrackingUrl>
<Tag>community</Tag>
<Tag>hrabowski</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Feb 2014 14:11:16 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="106854" important="false" status="posted" url="https://my3.my.umbc.edu/posts/106854">
<Title>Round-Up: UMBC in the News</Title>
<Body>
<![CDATA[
    <div class="html-content">One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of …</div>
]]>
</Body>
<Summary>One of the things that makes UMBC great is how wonderful our alumni, students, faculty and staff are. Because of …</Summary>
<Website>https://magazine.umbc.edu/round-up-umbc-in-the-news-4/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/106854/guest@my.umbc.edu/e1d712e3d4ba6a9eff7a3aad7e715ba4/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Tag>bloomberg-businessweek</Tag>
<Tag>carlo-diclemente</Tag>
<Tag>dave-marcotte</Tag>
<Tag>dennis-coates</Tag>
<Tag>fox-news-latino</Tag>
<Tag>justin-vlez-hagan</Tag>
<Tag>new-books-network</Tag>
<Tag>the-atlanta-journal-constitution</Tag>
<Tag>the-baltimore-sun</Tag>
<Tag>the-daily-iowan</Tag>
<Tag>thomas-schaller</Tag>
<Group token="retired-1945">UMBC Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-1945</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/images/avatars/group/8/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/images/avatars/group/8/original.png?1787842820</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/images/avatars/group/8/xxlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/images/avatars/group/8/xlarge.png?1787842820</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/images/avatars/group/8/large.png?1787842820</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/images/avatars/group/8/medium.png?1787842820</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/images/avatars/group/8/small.png?1787842820</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/images/avatars/group/8/xsmall.png?1787842820</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/images/avatars/group/8/xxsmall.png?1787842820</AvatarUrl>
<Sponsor>UMBC Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 28 Feb 2014 14:10:40 -0500</PostedAt>
</NewsItem>

</News>
