<?xml version="1.0"?>
<News hasArchived="true" page="7814" pageCount="10799" pageSize="10" timestamp="Wed, 09 Sep 2026 04:34:24 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7814&amp;range=30">
<NewsItem contentIssues="false" id="41616" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41616">
<Title>Stackicons: Doing More with Icon Fonts</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><em>The following is a guest post by <a href="http://parkerbennett.com" rel="nofollow external" class="bo">by Parker Bennett</a>. While icon fonts are efficient and easy to use and scaleable and all that, one of the classic "strikes" against them is that the icon can only be one color. Parker has a brand new project that solves that issue in a simple and clever way. I'll let him introduce it for you.</em></p>
    <p></p>
    <p>Even though the <a href="http://www.kickstarter.com/projects/207474036/iconic-advanced-icons-for-the-modern-web" rel="nofollow external" class="bo">future of icons</a> will likely be <a href="http://css-tricks.com/using-svg/" rel="nofollow external" class="bo">SVG</a>, here in the present, icon fonts still offer a compelling alternative — with super easy styling of color, size, text-shadows, hover effects and more using just CSS. Icon fonts are <a href="css-tricks.com/examples/IconFont/" rel="nofollow external" class="bo">still awesome</a>.</p>
    <p>One big advantage SVG has over icon fonts is full color. But icon fonts don’t have to be limited to just a single color. By overlapping two or more elements we can create unique “multi-color” icons with a contemporary flat look. If you’ve ever done any two-color or screen printing, it’s a similar idea.</p>
    <p>I call them <a href="http://stackicons.com" rel="nofollow external" class="bo">Stackicons</a>.</p>
    <div>
    <div>
    <span></span><span></span><span></span><span></span><strong>→</strong><a href="" rel="nofollow external" class="bo">Dribbble</a>
    </div>
    <div>
    <span></span><span></span><span></span><span></span><strong>→</strong><a href="" rel="nofollow external" class="bo">Github</a>
    </div>
    </div>
    <p>For each color, we use a separate pseudo element, then use absolute positioning to stack them on top of each other. (If you want more than two colors, it will cost you a non-semantic span.)</p>
    <pre><code>/* @font-face to load icon font... */&#x000A;    &#x000A;    /* horizontal button row: inline-block vs float makes positioning easier using text-align */&#x000A;    &#x000A;    /* any class that starts with "st-icon-" */&#x000A;    [class^="st-icon-"] {&#x000A;      display: inline-block;&#x000A;      vertical-align: top;&#x000A;      white-space: nowrap;&#x000A;      /* child elements absolute */&#x000A;      position: relative;&#x000A;      /* remove inline-block white-space */&#x000A;      margin-right: -.16em; /* 5px */&#x000A;      /* if not already universally applied */&#x000A;      -moz-box-sizing: border-box;&#x000A;      -webkit-box-sizing: border-box;&#x000A;      box-sizing: border-box;&#x000A;      /* padding here for text, icons replicate this using size and position:absolute - padding makes touch-target bigger */&#x000A;      padding: 0.143em;&#x000A;      /* units used in font: 1em = 2048, icons 2400 wide, so icons are 1.171875em (2400/2048). Add padding x2 to get size: */&#x000A;      height: 1.45788em;&#x000A;      width: 1.45788em;&#x000A;      font-size: 1.815em;&#x000A;      /* text hidden old-school */&#x000A;      text-align: left;&#x000A;      text-indent: -9999px; }&#x000A;    &#x000A;    /* position:absolute stacks pseudo elements - extra &amp;lt;span&gt; in markup = 2 extra pseudo elements */&#x000A;    [class^="st-icon-"]:before,&#x000A;    [class^="st-icon-"]:after,&#x000A;    [class^="st-icon-"] span:before,&#x000A;    [class^="st-icon-"] span:after {&#x000A;      display: block;&#x000A;      position: absolute;&#x000A;      white-space: normal;&#x000A;      /* match padding above */&#x000A;      top: 0.143em;&#x000A;      left: 0.143em;&#x000A;      /* undo text hidden */&#x000A;      text-indent: 0;&#x000A;      /* inherits size from parent, ems cascade */&#x000A;      font-size: 1em;&#x000A;      font-family: "Stackicons-Social";&#x000A;      font-weight: 400 !important;&#x000A;      font-style: normal !important;&#x000A;      -webkit-font-smoothing: antialiased;&#x000A;      -moz-osx-font-smoothing: grayscale;&#x000A;      font-smoothing: antialiased;&#x000A;      /* screenreaders */&#x000A;      speak: none;&#x000A;      /* transitions here */ }&#x000A;    &#x000A;    .st-icon-amazon:before {&#x000A;      /* character code - unicode private use area */&#x000A;      content: "\e079"; /* black "a" */&#x000A;      color: black; }&#x000A;    &#x000A;    .st-icon-amazon:hover:before {&#x000A;      color: #626262; }&#x000A;    &#x000A;    .st-icon-amazon:after {&#x000A;      content: "\e080"; /* orange smile */&#x000A;      color: #ff9900; }&#x000A;    &#x000A;    .st-icon-amazon:hover:after {&#x000A;      color: #ffbd59; }</code></pre>
    <p>Using rgba values, we can even do some color mixing to give us more colors. If we really want to push the limits, we can use <code>-webkit-background-clip: text</code> to give icons a <code>-webkit-linear-gradient</code> background.</p>
    <p>Yes, it’s a bit on the hacky side: It takes some design forethought, and the ability to generate an icon font. There are more moving parts to manage. But it also offers a lot of flexibility, especially using Sass variables.</p>
    
    <a href="http://stackicons.com" rel="nofollow external" class="bo">Stackicons</a>
    
    This :hover effect would be hard to do in SVG<br>
    
    
    <h3>Stackicons-Social</h3>
    <p>To show how it works, I made a free, open source icon font, <a href="http://stackicons.com" rel="nofollow external" class="bo">Stackicons-Social</a>, and created a Sass “Construction Kit” to generate the CSS for both single color icons and “multi-color” versions of over 60 social brands.</p>
     
    <h2>Stackicons-Social</h2>
    <div>
    <div>
            <a rel="nofollow external" class="bo">icon-only</a><a rel="nofollow external" class="bo">square</a><a rel="nofollow external" class="bo">rounded1</a><a rel="nofollow external" class="bo">rounded2</a><a rel="nofollow external" class="bo">rounded3</a><a rel="nofollow external" class="bo">circle</a>
          </div>
    <div>
    <a rel="nofollow external" class="bo">multi-color</a>
          </div>
    </div>
     
          <br>
          <a title="AddThis" href="" rel="nofollow external" class="bo">Add This</a> <a title="Alt.net" href="" rel="nofollow external" class="bo">Alt.net</a> <a title="Amazon" href="" rel="nofollow external" class="bo">Amazon</a> <a title="Android" href="" rel="nofollow external" class="bo">Android</a> <a title="Apple" href="" rel="nofollow external" class="bo">Apple</a> <a title="Behance" href="" rel="nofollow external" class="bo">Behance</a> <a title="Blogger" href="" rel="nofollow external" class="bo">Blogger</a> <a title="CodePen" href="" rel="nofollow external" class="bo">Codepen</a> <a title="Delicious" href="" rel="nofollow external" class="bo">Delicious</a> <a title="deviantART" href="" rel="nofollow external" class="bo">Deviant Art</a> <a title="Digg" href="" rel="nofollow external" class="bo">Digg</a> <a title="Dribbble" href="" rel="nofollow external" class="bo">Dribbble</a> <a title="Dribbble" href="" rel="nofollow external" class="bo">Dribbble</a> <a title="Dropbox" href="" rel="nofollow external" class="bo">Dropbox</a> <a title="Ebay" href="" rel="nofollow external" class="bo">Ebay</a> <a title="Email" href="" rel="nofollow external" class="bo">Email</a> <a href="" rel="nofollow external" class="bo">Email</a> <a title="Evernote" href="" rel="nofollow external" class="bo">Evernote</a> <a title="Facebook" href="" rel="nofollow external" class="bo">Facebook</a> <a title="Facebook" href="" rel="nofollow external" class="bo">Facebook</a> <a title="Flattr" href="" rel="nofollow external" class="bo">Flattr</a> <a title="Flickr" href="" rel="nofollow external" class="bo">Flickr</a> <a title="Forrst" href="" rel="nofollow external" class="bo">Forrst</a> <a title="Foursquare" href="" rel="nofollow external" class="bo">Foursquare</a> <a title="GitHub" href="" rel="nofollow external" class="bo">Github</a> <a title="GitHub" href="" rel="nofollow external" class="bo">Github</a> <a title="Gittip" href="" rel="nofollow external" class="bo">Gittip</a> <a title="Gmail" href="" rel="nofollow external" class="bo">Gmail</a> <a title="Gmail" href="" rel="nofollow external" class="bo">Gmail</a> <a title="Google" href="" rel="nofollow external" class="bo">Google</a> <a title="Google+" href="" rel="nofollow external" class="bo">Google+</a> <a title="IMDb" href="" rel="nofollow external" class="bo">IMDb</a> <a title="Instagram" href="" rel="nofollow external" class="bo">Instagram</a> <a title="Kickstarter" href="" rel="nofollow external" class="bo">Kickstarter</a> <a title="Last.fm" href="" rel="nofollow external" class="bo">last.fm</a> <a title="LinkedIn" href="" rel="nofollow external" class="bo">LinkedIn</a> <a title="Microsoft" href="" rel="nofollow external" class="bo">Microsoft</a> <a title="Myspace" href="" rel="nofollow external" class="bo">Myspace</a> <a title="Pandora" href="" rel="nofollow external" class="bo">Pandora</a> <a title="PayPal" href="" rel="nofollow external" class="bo">Paypal</a> <a title="PayPal" href="" rel="nofollow external" class="bo">Paypal</a> <a title="Picasa" href="" rel="nofollow external" class="bo"><span></span>Picasa</a> <a title="Pinboard" href="" rel="nofollow external" class="bo">Pinboard</a> <a title="Pinterest" href="" rel="nofollow external" class="bo">Pinterest</a> <a title="Rdio" href="" rel="nofollow external" class="bo">Rdio</a> <a title="Reddit" href="" rel="nofollow external" class="bo">Reddit</a> <a title="RSS" href="" rel="nofollow external" class="bo">RSS</a> <a title="ShareThis" href="" rel="nofollow external" class="bo">ShareThis</a> <a title="Skype" href="" rel="nofollow external" class="bo">Skype</a> <a title="SlideShare" href="" rel="nofollow external" class="bo">Slideshare</a> <a title="SoundCloud" href="" rel="nofollow external" class="bo">Soundcloud</a> <a title="Spotify" href="" rel="nofollow external" class="bo">Spotify</a> <a title="StumbleUpon" href="" rel="nofollow external" class="bo">Stumbleupon</a> <a title="Stack Overflow" href="" rel="nofollow external" class="bo">Stack Overflow</a> <a title="Tumblr" href="" rel="nofollow external" class="bo">Tumblr</a> <a title="Twitter" href="" rel="nofollow external" class="bo">Twitter</a> <a title="Vimeo" href="" rel="nofollow external" class="bo">Vimeo</a> <a title="Vine" href="" rel="nofollow external" class="bo">Vine</a> <a title="Windows" href="" rel="nofollow external" class="bo">Windows</a> <a title="Windows 7" href="" rel="nofollow external" class="bo">Windows 7</a> <a title="Wordpress" href="" rel="nofollow external" class="bo">WordPress</a> <a title="Xing" href="" rel="nofollow external" class="bo">Xing</a> <a title="Yahoo" href="" rel="nofollow external" class="bo">Yahoo</a> <a title="Yelp" href="" rel="nofollow external" class="bo">Yelp</a> <a title="YouTube" href="" rel="nofollow external" class="bo">YouTube</a> <a title="YouTube" href="" rel="nofollow external" class="bo">YouTube</a> <a title="YouTube" href="" rel="nofollow external" class="bo">YouTube</a> <a title="Zerply" href="" rel="nofollow external" class="bo">Zerply</a> <a title="Search" href="" rel="nofollow external" class="bo">Search</a> <a href="" rel="nofollow external" class="bo">Search</a> <a title="Menu" href="" rel="nofollow external" class="bo">Menu</a> <a title="Menu" href="" rel="nofollow external" class="bo">Menu</a> <a title="Menu" href="" rel="nofollow external" class="bo">Menu</a> <a title="More..." href="" rel="nofollow external" class="bo">More…</a> <a title="Submenu" href="" rel="nofollow external" class="bo">More</a><br>
         
    <p>    <a rel="nofollow external" class="bo">View Stackicons-Social</a></p>
     
    <p>I also created a range of button shapes in the font, from square to circle (plus icon-only), and have classes that override the shape on the fly. Want circular icons? Just add the <code>.st-shape-circle</code> class. iOS style? <code>.st-shape-rounded3.</code></p>
    <p><a href="http://codepen.io/parkerbennett/pen/tIzho" rel="nofollow external" class="bo">Try it on CodePen</a></p>
    <h3>Putting It Together with Sass</h3>
    <p>Behind the scenes, there is a group of .scss _partial files that Sass compiles. If you’re comfortable using Sass you can customize things extensively just by changing variables in this "construction kit":</p>
    <ul>
    <li>
    <strong>fonts-stackicons-social</strong> - Path to stackicons-social font.</li>
    <li>
    <strong>colors-social–2014</strong> - Color variables for social brands.</li>
    <li>
    <strong>unicodes-stackicons-social</strong> - Font unicode characters abstracted into variables.</li>
    <li>
    <strong>construction-kit-stackicons-social</strong> - This is where we generate default values for icon size, margin, padding, shape, color, hover-style, etc. (Play here.)</li>
    <li>
    <strong>css-defaults-stackicons-social</strong> - This does the CSS grunt work to create each .st-icon-($brand) class.*</li>
    <li>
    <strong>override-shapes-stackicons-social</strong> - Let’s you override the button shape on single-color icons using classes: st-shape-square to st-shape-circle, plus st-shape-icon.*</li>
    <li>
    <strong>override-colors-stackicons-social</strong> - Some examples of “color-styles” for single-color icons to demo different options. Lots of extra CSS, so it’s commented out by default.*</li>
    <li>
    <strong>multi-color-kit-stackicons-social.scss</strong> - Like “construction-kit” above, but for the .st-multi-color class: generates default shape, color-style, etc.</li>
    <li>
    <strong>multi-color-css-stackicons-social.scss</strong> - Like “css-defaults” above, this does the CSS grunt work to generate each multi-color .st-icon-($brand) class.*</li>
    <li>
    <strong>multi-color-override-shapes-stackicons-social</strong> - This allows you to change icon shapes using classes on multi-color icons.*</li>
    </ul>
    <p>* Because Sass doesn’t allow us to use variables within variables, this uses a lot of <code>@if</code> statements to generate the <code>.st-icon-($brand)</code> classes. Ugly, but marginally maintainable. There are several <code>@each</code> statements, listing the brands to output. Ideally, you would go through and edit these lists to limit the CSS output to only the brands you need.</p>
    <h3>Rolling Your Own</h3>
    <p>There are some great free resources for creating icon fonts, including <a href="http://icomoon.io" rel="nofollow external" class="bo">icomoon.io</a> and <a href="http://fontello.com" rel="nofollow external" class="bo">fontello.com</a>. I use Adobe Illustrator and <a href="http://glyphsapp.com" rel="nofollow external" class="bo">Glyphs</a> on the Mac. (Glyphs Mini is a lower cost option that limits the units per em to 1000. They also offer student pricing.) To generate the web font versions, I recommend <a href="https://github.com/briangonzalez/fontprep" rel="nofollow external" class="bo">FontPrep</a>, which Brian Gonzalez just made open source. <a href="http://fontsquirrel.com" rel="nofollow external" class="bo">FontSquirrel</a> is another good free option. (If you’re interested in more workflow details, let me know in the comments.)</p>
    <p>You should also check out <a href="http://somerandomdude.com" rel="nofollow external" class="bo">some random dude</a> (P.J. Onori) and his <a href="http://somerandomdude.com/work/iconic/" rel="nofollow external" class="bo">iconic project</a>. He also has some <a href="http://somerandomdude.com/2012/01/31/font-embedding-icons-the-right-way/" rel="nofollow external" class="bo">helpful tips on using icon fonts</a>.</p>
    <p>As always, if you have any questions, comments, or corrections you can email me at <a href="mailto:parker@parkerbennett.com" rel="nofollow external" class="bo">parker@parkerbennett.com</a>.</p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/stackicons-icon-fonts/" rel="nofollow external" class="bo">Stackicons: Doing More with Icon Fonts</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The following is a guest post by by Parker Bennett. While icon fonts are efficient and easy to use and scaleable and all that, one of the classic "strikes" against them is that the icon can only...</Summary>
<Website>http://css-tricks.com/stackicons-icon-fonts/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41616/guest@my.umbc.edu/8c59bc128a7f28fdf54be35085406e0b/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, 20 Feb 2014 16:48:26 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41613" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41613">
<Title>Tickets on Sale at the CIC!</Title>
<Tagline>Event Tickets Remaining on February 20th, 2014</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div><strong>Stop by the Campus Information Center in The Commons to purchase the tickets listed below!</strong></div>
    <div><em><strong><br></strong></em></div>
    <div><strong>MGC Showcase</strong></div>
    <div><em>     Friday, February 14th </em></div>
    <div><em>     University Center Ballroom @ 7pm</em></div>
    <div><em>     UMBC ID = Free</em></div>
    <div><em>     General Admission = $5.00</em></div>
    <div><em><strong>     Postponed!!!</strong></em></div>
    <div><em><strong><br></strong></em></div>
    <div><strong><a href="http://my.umbc.edu/groups/seb/events/22457" rel="nofollow external" class="bo">SEB Science Center Bus Trip</a></strong></div>
    <div><em>     Saturday, February 22nd</em></div>
    <div><em>     Bus Departs: Commons Loop @ 10:00am</em></div>
    <div><em>     All Guests = $12.00</em></div>
    <div><em><strong>     We are on Ticket 30 of 48</strong></em></div>
    <div><em><strong><br></strong></em></div>
    <div><strong>BSU Fashion Show</strong></div>
    <div><em>     Saturday, February 22nd</em></div>
    <div><em>     University Center Ballroom @ 7pm</em></div>
    <div><em>     UMBC ID = Free</em></div>
    <div><em>     General Admission = $10.00</em></div>
    <div><em><strong>     We are SOLD OUT!!!</strong></em></div>
    <div><em><strong><br></strong></em></div>
    <div><strong><a href="http://my.umbc.edu/events/22383" rel="nofollow external" class="bo">Freedom Alliance - Spoken Word w/ Andrea Gibson</a></strong></div>
    <div><em>     Thurday, February 27th</em></div>
    <div><em>     University Center Ballroom @ 7pm</em></div>
    <div><em>     UMBC ID = Free</em></div>
    <div><em>     General Admission = $10.00</em></div>
    <div><em><strong>     We are on Ticket 71 of 336</strong></em></div>
    <div><em><strong><br></strong></em></div>
    <div><span><span><div><strong><a href="http://my.umbc.edu/groups/seb/events/22474" rel="nofollow external" class="bo">SEB NYC Bus Trip</a></strong></div>
    <div><em>     Saturday, February 8th</em></div>
    <div><em>     Bus Departs: Commons Loop @ 8:00am</em></div>
    <div><em>     All Guests = $35.00</em></div>
    <div><em><span>     <strong>We are on Ticket 39 of 53</strong></span></em></div>
    <div><em><span><strong>     Exchange old ticket #1-37 for new NYC Bus Trip Ticket</strong></span></em></div></span></span></div>
    <div><em><strong><br></strong></em></div>
    <div><strong><a href="http://my.umbc.edu/groups/seb/events/22440" rel="nofollow external" class="bo">SEB Philadelphia Bus Trip</a></strong></div>
    <div><em>     Saturday, March 8th</em></div>
    <div><em>     Bus Departs: Commons Loop @ 8:00am</em></div>
    <div><em>     All Guests = $25.00</em></div>
    <div><em><strong>     We are on Ticket 32 of 53</strong></em></div>
    <div><br></div>
    <div><span><span><div><strong><a href="http://my.umbc.edu/groups/seb/events/22467" rel="nofollow external" class="bo">SEB Individual Weekly Movie Tickets</a></strong></div>
    <div><span><em><strong>     </strong>All Guests = $2.00</em></span></div>
    <div><span><em><br></em></span></div>
    <div><strong>SEB Semester Movie Pass</strong></div>
    <div><em><strong>     </strong>All Guests = $10.00</em></div>
    <div><em><br></em></div>
    <div><span><span><div><span><div><strong>Also, don't forget to check out these events happening this week!</strong></div>
    <div><br></div>
    <div>
    <strong><a href="http://my.umbc.edu/events/22452" rel="nofollow external" class="bo">SEB Open Mic Night</a> </strong><span>- Thursday, February 20th 8pm-10pm in the Sports Zone. </span><span>Share your talent with UMBC!</span>
    </div>
    <div><span><div><span><br></span></div></span></div>
    <div><span><div>
    <strong><a href="http://my.umbc.edu/events/22453" rel="nofollow external" class="bo">SEB Weekly Movie: Gravity</a> </strong><span>- </span><span>Come out to Lecture Hall 1 on Thursday at 9pm, Friday at 8pm, or Saturday at 8pm to see Gravity! </span><span>Tickets for the Thursday and Friday showings are $2 and available at the CIC. Saturday's showing is free!</span>
    </div></span></div>
    <div><span><div><span><br></span></div></span></div>
    <div>
    <span><div>
    <strong><a href="http://my.umbc.edu/events/22454" rel="nofollow external" class="bo">SEB Drum Circle</a> </strong><span>- Friday, February 21st 12pm-1pm on Mainstreet. </span>
    </div></span><span><div><span>Get creative and musical with (seb)! Be a part of our make shift drum circle!</span></div></span>
    </div></span></div></span></span></div></span></span></div>
    </div>
]]>
</Body>
<Summary>Stop by the Campus Information Center in The Commons to purchase the tickets listed below!     MGC Showcase       Friday, February 14th        University Center Ballroom @ 7pm       UMBC ID = Free...</Summary>
<Website>https://www.facebook.com/UMBC.CIC</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41613/guest@my.umbc.edu/476704dd1587b2c043cc8a3f329fa160/api/pixel</TrackingUrl>
<Group token="cic">Campus Information Center (CIC)</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/cic</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xsmall.png?1318518699</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/original.png?1318518699</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xxlarge.png?1318518699</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xlarge.png?1318518699</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/large.png?1318518699</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/medium.png?1318518699</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/small.png?1318518699</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xsmall.png?1318518699</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/311/7180ee78abc8c4401d89f708582062e4/xxsmall.png?1318518699</AvatarUrl>
<Sponsor>Campus Information Center (CIC)</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/613/fcf21509b5dd8503aa090c93bbc8eb2c/xxlarge.jpg?1392932794</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/613/fcf21509b5dd8503aa090c93bbc8eb2c/xlarge.jpg?1392932794</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/613/fcf21509b5dd8503aa090c93bbc8eb2c/large.jpg?1392932794</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/613/fcf21509b5dd8503aa090c93bbc8eb2c/medium.jpg?1392932794</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/613/fcf21509b5dd8503aa090c93bbc8eb2c/small.jpg?1392932794</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/613/fcf21509b5dd8503aa090c93bbc8eb2c/xsmall.jpg?1392932794</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/613/fcf21509b5dd8503aa090c93bbc8eb2c/xxsmall.jpg?1392932794</ThumbnailUrl>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 20 Feb 2014 16:47:22 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41614" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41614">
<Title>H.P.&#8217;s First-Quarter Revenue Fell Less Than Expected</Title>
<Body>
<![CDATA[
    <div class="html-content">Hewlett-Packard, the computing giant, managed to grow sales at its two largest businesses despite rapidly slackening PC demand.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2Freuters%2F2014%2F02%2F20%2Fbusiness%2F20reuters-hp-results.html%3Fpartner%3Drss%26emc%3Drss&amp;t=H.P.%E2%80%99s+First-Quarter+Revenue+Fell+Less+Than+Expected" 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%2Freuters%2F2014%2F02%2F20%2Fbusiness%2F20reuters-hp-results.html%3Fpartner%3Drss%26emc%3Drss&amp;t=H.P.%E2%80%99s+First-Quarter+Revenue+Fell+Less+Than+Expected" 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%2Freuters%2F2014%2F02%2F20%2Fbusiness%2F20reuters-hp-results.html%3Fpartner%3Drss%26emc%3Drss&amp;t=H.P.%E2%80%99s+First-Quarter+Revenue+Fell+Less+Than+Expected" 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%2Freuters%2F2014%2F02%2F20%2Fbusiness%2F20reuters-hp-results.html%3Fpartner%3Drss%26emc%3Drss&amp;t=H.P.%E2%80%99s+First-Quarter+Revenue+Fell+Less+Than+Expected" 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%2Freuters%2F2014%2F02%2F20%2Fbusiness%2F20reuters-hp-results.html%3Fpartner%3Drss%26emc%3Drss&amp;t=H.P.%E2%80%99s+First-Quarter+Revenue+Fell+Less+Than+Expected" 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/186530895259/u/0/f/640387/c/34625/s/37590b58/sc/2/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530895259/u/0/f/640387/c/34625/s/37590b58/sc/2/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530895259/u/0/f/640387/c/34625/s/37590b58/sc/2/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530895259/u/0/f/640387/c/34625/s/37590b58/sc/2/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530895259/u/0/f/640387/c/34625/s/37590b58/sc/2/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530895259/u/0/f/640387/c/34625/s/37590b58/sc/2/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186530895259/u/0/f/640387/c/34625/s/37590b58/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530895259/u/0/f/640387/c/34625/s/37590b58/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Hewlett-Packard, the computing giant, managed to grow sales at its two largest businesses despite rapidly slackening PC demand.      </Summary>
<Website>http://www.nytimes.com/reuters/2014/02/20/business/20reuters-hp-results.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41614/guest@my.umbc.edu/a1ce2246a2f01ab51d043100fa64b6cb/api/pixel</TrackingUrl>
<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, 20 Feb 2014 16:33:40 -0500</PostedAt>
<EditAt>Thu, 20 Feb 2014 18:39:40 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="122795" important="false" status="posted" url="https://my3.my.umbc.edu/posts/122795">
<Title>Alums in the News</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>We are proud of our alums and their constant achievements. Three of UMBC’s alums, in particular, have made it in the news and we thought you should know! Read about Sean Scheidt, Zofie Lang, Terry Nolan and their stories of success.</p>
    <p><strong>Sean Scheidt ‘05, visual arts photography</strong>, is featured on BuzzFeed for his before-and-after photographs of burlesque performers. Take a look at his ability to create and capture these artful transformations, or as BuzzFeed’s Matthew Tucker puts it, his ability to challenge “preconceptions of the performance art.”</p>
    <p><a href="http://www.buzzfeed.com/matthewtucker/awesome-tranformations-of-burlesque-performers" rel="nofollow external" class="bo">11 Eye-Opening Before-And-After Photos Of Burlesque Performers</a></p>
    <a href="http://s3-ec.buzzfed.com/static/2014-01/enhanced/webdr06/31/10/enhanced-buzz-wide-31659-1391181983-14.jpg" rel="nofollow external" class="bo"><img src="http://s3-ec.buzzfed.com/static/2014-01/enhanced/webdr06/31/10/enhanced-buzz-wide-31659-1391181983-14.jpg" alt="" width="611" height="439" style="max-width: 100%; height: auto;"></a>Photo via Sean Scheidt
    <p>More of Scheidt’s intriguing photography can be found on his site, <a href="http://www.seanscheidt.com" rel="nofollow external" class="bo">seanscheidt.com</a>.</p>
    <a href="http://www.blackrockcenter.org/wp-content/uploads/2013/05/02_1_BedrohT_WEB-199x300.jpg" rel="nofollow external" class="bo"><img src="http://www.blackrockcenter.org/wp-content/uploads/2013/05/02_1_BedrohT_WEB-199x300.jpg" alt="" width="211" height="319" style="max-width: 100%; height: auto;"></a>Photo via BlackRock Center For the Arts
    <p><strong>Zofie Lang ‘02, psychology and sociology</strong>, will be presenting her 12-piece assemblage at BlackRock Center for the Arts’ show, <a href="http://www.blackrockcenter.org/galleries/upcoming-exhibits/" rel="nofollow external" class="bo"><em>Collective: a visual narrative of tale, time, and thought</em></a>. She is proud to be presenting alongside artists Renee Lachman and Henrik Sundqvist. Lang will use digital photography, found objects and photo montage to explore folklore, literary tales and their meanings. Details about the show can be found on BlackRock Center for the Arts’ site.</p>
    <p>Lang’s personal site, <a href="http://www.zofielangfairytales.com" rel="nofollow external" class="bo">zofielangfairytales.com</a>, also provides a sneak peek of some of the pieces she will be presenting at the exhibit.</p>
    <p>President of the Arbutus Business and Professional Association, attorney <strong>Terry Nolan ‘82, political science</strong>, is committed to his job and prides himself on giving back to and growing his local community – it’s where his heart is, explains his wife, Patti Sue Nolan. Nolan works out of his law office in Arbutus and has made a name for himself amongst the town in which he lives. Read more about Nolan’s success in <a href="http://www.baltimoresun.com/news/maryland/baltimore-county/arbutus-lansdowne/ph-at-terry-nolan-0122-20140120,0,7779497.story" rel="nofollow external" class="bo"><em>The Baltimore Sun’s</em> article</a>.</p>
    <a href="http://www.baltimoresun.com/media/photo/2014-01/78967255.jpg" rel="nofollow external" class="bo"><img src="http://www.baltimoresun.com/media/photo/2014-01/78967255.jpg" alt="" width="600" height="408" style="max-width: 100%; height: auto;"></a>Photo via Baltimore Sun
    <p>If you are a UMBC alum and have a story of success, we’d love to hear it. Add a class note here: <a href="http://alumni.umbc.edu/s/1325/index.aspx?sid=1325&amp;gid=1&amp;pgid=106&amp;cid=277" rel="nofollow external" class="bo">Submit class note</a>.</p>
    </div>
]]>
</Body>
<Summary>We are proud of our alums and their constant achievements. Three of UMBC’s alums, in particular, have made it in the news and we thought you should know! Read about Sean Scheidt, Zofie Lang, Terry...</Summary>
<Website>https://umbc.edu/stories/alums-in-the-news/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/122795/guest@my.umbc.edu/a359bb728e41cb416fe50013feeb7859/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Tag>arbutus-business-and-professional-association</Tag>
<Tag>blackrock-center-for-the-arts</Tag>
<Tag>buzzfeed</Tag>
<Tag>henrik-sundqvist</Tag>
<Tag>matthew-tucker</Tag>
<Tag>patti-sue-nolan</Tag>
<Tag>renee-lachman</Tag>
<Tag>sean-scheidt</Tag>
<Tag>terry-nolan</Tag>
<Tag>umbc</Tag>
<Tag>university-of-maryland-baltimore-county</Tag>
<Tag>zofie-lang</Tag>
<Group token="umbc-news-magazine">UMBC News &amp;amp; Magazine</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news-magazine</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/original.png?1748556657</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xlarge.png?1748556657</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/large.png?1748556657</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/medium.png?1748556657</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/small.png?1748556657</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xsmall.png?1748556657</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/943/24435aa6207c452e7bc15cc74b42c7bb/xxsmall.png?1748556657</AvatarUrl>
<Sponsor>UMBC News &amp; Magazine</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Thu, 20 Feb 2014 16:00:37 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="41610" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41610">
<Title>Website being replaced by group</Title>
<Tagline>This is the future! ... for now</Tagline>
<Body>
<![CDATA[
    <div class="html-content">Hi everybody!<div><br></div>
    <div>We have been informed that our website was grossly out of date. And also not actually communicating relavent information anymore. Since we were unable to make changes to the website, UMBC suggested, and I agreed to remove our website.</div>
    <div><br></div>
    <div>Instead of the website, we will use this group. The group is fully accessible to students, alumni, and guests. This switch will allow members and casual participants to keep up with club news, discuss happenings in the community (Did you guys hear about Baltimore's plans for a Japanese Culture Festival!?!?), and also share experiences. It will not replace the email list as a means of direct communication. For nominations, etc, email is the best way to contact us.</div>
    <div><br></div>
    <div>I am very excited about this group. It will make our club more visible on campus, attracting new, and returning members. Revitalizing our membership will ensure that UAS will continue to be a UMBC tradition for another 20 years. </div>
    <div><br></div>
    <div>Please let us know what you guys think about this! Will it make it easier to share anime suggestions for B.Y.O.A.? How about coordinate marathon committees? Or theme nights? I want to know.</div>
    <div><br></div>
    <div>I'll see you all tomorrow!</div>
    <div><br></div>
    <div>~Margaret Barnett</div>
    </div>
]]>
</Body>
<Summary>Hi everybody!    We have been informed that our website was grossly out of date. And also not actually communicating relavent information anymore. Since we were unable to make changes to the...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41610/guest@my.umbc.edu/2cf9b153a95850069060d770e2653350/api/pixel</TrackingUrl>
<Group token="umbcanimesociety">Anime Society</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbcanimesociety</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/xsmall.png?1614547557</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/original.png?1614547557</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/xxlarge.png?1614547557</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/xlarge.png?1614547557</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/large.png?1614547557</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/medium.png?1614547557</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/small.png?1614547557</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/xsmall.png?1614547557</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/755/146ffe0cde2fd82105668b02824105c9/xxsmall.png?1614547557</AvatarUrl>
<Sponsor>UMBC Anime Society</Sponsor>
<PawCount>0</PawCount>
<CommentCount>2</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 20 Feb 2014 15:38:43 -0500</PostedAt>
<EditAt>Thu, 20 Feb 2014 15:39:23 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="41611" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41611">
<Title>Facebook Looks to Become Big Fish in Another Big Pond</Title>
<Body>
<![CDATA[
    <div class="html-content">The acquisition is part of its effort to create a series of applications on a user’s mobile device instead of relying on its core social network alone.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F21%2Ftechnology%2Ffacebook-looks-to-become-big-fish-in-another-big-pond.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Looks+to+Become+Big+Fish+in+Another+Big+Pond" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F21%2Ftechnology%2Ffacebook-looks-to-become-big-fish-in-another-big-pond.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Looks+to+Become+Big+Fish+in+Another+Big+Pond" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F21%2Ftechnology%2Ffacebook-looks-to-become-big-fish-in-another-big-pond.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Looks+to+Become+Big+Fish+in+Another+Big+Pond" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F21%2Ftechnology%2Ffacebook-looks-to-become-big-fish-in-another-big-pond.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Looks+to+Become+Big+Fish+in+Another+Big+Pond" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F02%2F21%2Ftechnology%2Ffacebook-looks-to-become-big-fish-in-another-big-pond.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Facebook+Looks+to+Become+Big+Fish+in+Another+Big+Pond" 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/186530831906/u/0/f/640387/c/34625/s/3758733a/sc/5/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530831906/u/0/f/640387/c/34625/s/3758733a/sc/5/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530831906/u/0/f/640387/c/34625/s/3758733a/sc/5/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530831906/u/0/f/640387/c/34625/s/3758733a/sc/5/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530831906/u/0/f/640387/c/34625/s/3758733a/sc/5/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530831906/u/0/f/640387/c/34625/s/3758733a/sc/5/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186530831906/u/0/f/640387/c/34625/s/3758733a/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530831906/u/0/f/640387/c/34625/s/3758733a/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The acquisition is part of its effort to create a series of applications on a user’s mobile device instead of relying on its core social network alone.      </Summary>
<Website>http://www.nytimes.com/2014/02/21/technology/facebook-looks-to-become-big-fish-in-another-big-pond.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41611/guest@my.umbc.edu/9d0a23c3fa5f1d2c16f2c3f990318ad7/api/pixel</TrackingUrl>
<Tag>facebook-inc</Tag>
<Tag>mergers-acquisitions-and-divestitures</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, 20 Feb 2014 15:32:10 -0500</PostedAt>
<EditAt>Thu, 20 Feb 2014 15:32:10 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="109821" important="false" status="posted" url="https://my3.my.umbc.edu/posts/109821">
<Title>Carlo DiClemente, Psychology, on New Books Network</Title>
<Body>
<![CDATA[
    <div class="html-content">New Books Network recently interviewed Carlo DiClemente, presidential research professor and professor of psychology, about his co-authored book Substance Abuse Treatment and the Stages of Change: Selecting and Planning Interventions (Guilford Press, 2013). The network, a consortium of author-interview podcasts designed to enhance public conversation on given topics, interviewed DiClemente as part of its “New Books in Alcohol, Drugs and Intoxicants” series. In a comprehensive interview, DiClemente discussed the stages of change model as it relates to substance abuse and drug addiction treatment, as well the need for careful consideration of stage status and the complexities surrounding substance abuse. “The message in the book is …</div>
]]>
</Body>
<Summary>New Books Network recently interviewed Carlo DiClemente, presidential research professor and professor of psychology, about his co-authored book Substance Abuse Treatment and the Stages of Change:...</Summary>
<Website>https://news.umbc.edu/carlo-diclemente-psychology-on-new-books-network/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/109821/guest@my.umbc.edu/dbf2a750a11e66468d7b20bd591c409f/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>policy-and-society</Tag>
<Tag>psychology</Tag>
<Tag>research</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, 20 Feb 2014 15:18:36 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41607" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41607">
<Title>UMBC behind local schools in Recyclemania Competition</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <span>Who's winning Recyclemania?? Here's a glimpse at how we're doing compared to our neighbors. To learn how to help promote &amp; improve recycling on campus email <u><a href="mailto:recycle@umbc.edu">recycle@umbc.edu</a></u> <br><br></span><strong>We need to up our game &amp; all pitch in: ask your friends to join in, to reduce, reuse &amp; recycle! </strong>Take a look at the attached flier to learn more about our upcoming events &amp; activities! <br><br><span><span>University of Maryland-Baltimore County </span></span><br><span><span> Rank: 115  </span></span><br><span><span>lbs/person: 1.355</span></span><br><span></span><span><span><strong><br>Our Competitors: </strong><br><br></span>Towson University <br> Rank: 66  <br>lbs/person: 2.063<br> <br>University of Maryland-College Park  <br>Rank: 69  <br>lbs/person:1.975<br><br>Johns Hopkins University  <br>Rank: 86 <br>lbs/person:1.735<br><br>Frostburg State University:<br> Rank: 99 <br>lbs/person: 1.500<br> <br>Harford Community College  <br>Rank: 239 <br> lbs/person: 0.324<br><br><br>* These rates are the Per Capita Classic: </span> In this category schools compete to see which can collect the largest 
    combined amount of paper, cardboard and bottles and cans on a per person
     basis. Along with Waste Minimization and the targeted material 
    categories, results are calculated by dividing recycling weight figures 
    with the full time equivalent (FTE) student and staff population of the 
    school.<br><br><a href="http://recyclemaniacs.org/participate/rules/divisions-categories/stephen-k-gaski-capita-classic">http://recyclemaniacs.org/participate/rules/divisions-categories/stephen-k-gaski-capita-classic</a><br>
    </div>
]]>
</Body>
<Summary>Who's winning Recyclemania?? Here's a glimpse at how we're doing compared to our neighbors. To learn how to help promote &amp; improve recycling on campus email recycle@umbc.edu   We need to up...</Summary>
<Website>http://recyclemaniacs.org/scoreboard/current-results/competition-division</Website>
<AttachmentKind>Flyer</AttachmentKind>
<AttachmentUrl>https://assets4-my.umbc.edu/system/shared/attachments/be5c2f7786bb5474af6055fa1f0ac257/6aa11a10/news/000/041/607/1bff3f64f354e35b89422273e74cab8f/Recyclemania Calendar 2014.pdf?1392926550</AttachmentUrl>
<Attachments>
<Attachment kind="Flyer" url="https://my3.my.umbc.edu/posts/41607/attachments/12648"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41607/guest@my.umbc.edu/e6abff035a30fc07e1c66c2c6d19c3fa/api/pixel</TrackingUrl>
<Group token="retired-401">ReSET- Retriever Recycling team </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-401</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/xsmall.png?1337614255</AvatarUrl>
<AvatarUrl size="original">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/original.jpg?1337614255</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/xxlarge.png?1337614255</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/xlarge.png?1337614255</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/large.png?1337614255</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/medium.png?1337614255</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/small.png?1337614255</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/xsmall.png?1337614255</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/401/cd50a6640d6284992905dc447fd7701d/xxsmall.png?1337614255</AvatarUrl>
<Sponsor>ReSET- Retriever Recycling team</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/607/af9be397672697e4e58cd989f724c837/xxlarge.jpg?1392926621</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/607/af9be397672697e4e58cd989f724c837/xlarge.jpg?1392926621</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/041/607/af9be397672697e4e58cd989f724c837/large.jpg?1392926621</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/041/607/af9be397672697e4e58cd989f724c837/medium.jpg?1392926621</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/041/607/af9be397672697e4e58cd989f724c837/small.jpg?1392926621</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/607/af9be397672697e4e58cd989f724c837/xsmall.jpg?1392926621</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/041/607/af9be397672697e4e58cd989f724c837/xxsmall.jpg?1392926621</ThumbnailUrl>
<PawCount>3</PawCount>
<CommentCount>2</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 20 Feb 2014 15:04:58 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="41612" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41612">
<Title>DealBook: For a Start-Up&#8217;s Early Investor, a Sizable Return</Title>
<Body>
<![CDATA[
    <div class="html-content">Sequoia Capital’s investment of about $60 million in WhatsApp may now be worth about 50 times more, to $3 billion, a person briefed on the matter said.<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%2F20%2Fin-whatsapp-deal-sequoia-capital-may-make-50-times-its-money%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+For+a+Start-Up%E2%80%99s+Early+Investor%2C+a+Sizable+Return" 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%2F20%2Fin-whatsapp-deal-sequoia-capital-may-make-50-times-its-money%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+For+a+Start-Up%E2%80%99s+Early+Investor%2C+a+Sizable+Return" 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%2F20%2Fin-whatsapp-deal-sequoia-capital-may-make-50-times-its-money%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+For+a+Start-Up%E2%80%99s+Early+Investor%2C+a+Sizable+Return" 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%2F20%2Fin-whatsapp-deal-sequoia-capital-may-make-50-times-its-money%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+For+a+Start-Up%E2%80%99s+Early+Investor%2C+a+Sizable+Return" 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%2F20%2Fin-whatsapp-deal-sequoia-capital-may-make-50-times-its-money%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+For+a+Start-Up%E2%80%99s+Early+Investor%2C+a+Sizable+Return" 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/186530831905/u/0/f/640387/c/34625/s/37587346/sc/5/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530831905/u/0/f/640387/c/34625/s/37587346/sc/5/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530831905/u/0/f/640387/c/34625/s/37587346/sc/5/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530831905/u/0/f/640387/c/34625/s/37587346/sc/5/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186530831905/u/0/f/640387/c/34625/s/37587346/sc/5/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530831905/u/0/f/640387/c/34625/s/37587346/sc/5/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186530831905/u/0/f/640387/c/34625/s/37587346/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186530831905/u/0/f/640387/c/34625/s/37587346/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Sequoia Capital’s investment of about $60 million in WhatsApp may now be worth about 50 times more, to $3 billion, a person briefed on the matter said.      </Summary>
<Website>http://dealbook.nytimes.com/2014/02/20/in-whatsapp-deal-sequoia-capital-may-make-50-times-its-money/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41612/guest@my.umbc.edu/b19d08de185443bb9cfc47af3216327a/api/pixel</TrackingUrl>
<Tag>facebook-inc</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>mergers-acquisitions-and-divestitures</Tag>
<Tag>mergers-and-acquisitions</Tag>
<Tag>new</Tag>
<Tag>sequoia-capital</Tag>
<Tag>technology</Tag>
<Tag>top-headline-2</Tag>
<Tag>venture-capital</Tag>
<Tag>whatsapp-inc</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, 20 Feb 2014 15:01:11 -0500</PostedAt>
<EditAt>Thu, 20 Feb 2014 15:54:33 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="41608" important="false" status="posted" url="https://my3.my.umbc.edu/posts/41608">
<Title>We're participating in UMBC's Professional Clothing Drive: UMBC Suits You. 

Don...</Title>
<Body>
<![CDATA[
    <div class="html-content">We're participating in UMBC's Professional Clothing Drive: UMBC Suits You. <br> <br> Donate new and gently used professional clothing to UMBC students to assist with with their dress needs for interviews, career fairs, and more.<br> <br> We'll be accepting donations at our Columbia location until March 11th!</div>
]]>
</Body>
<Summary>We're participating in UMBC's Professional Clothing Drive: UMBC Suits You.     Donate new and gently used professional clothing to UMBC students to assist with with their dress needs for...</Summary>
<Website>http://www.facebook.com/umbctraining/posts/10151869416356076</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/41608/guest@my.umbc.edu/4f398f78a9b4a69d42ea3060babd0aa8/api/pixel</TrackingUrl>
<Tag>ccna</Tag>
<Tag>ceh</Tag>
<Tag>centers</Tag>
<Tag>cisco</Tag>
<Tag>cyber</Tag>
<Tag>cybersecurity</Tag>
<Tag>information</Tag>
<Tag>it</Tag>
<Tag>leadership</Tag>
<Tag>management</Tag>
<Tag>microsoft</Tag>
<Tag>project</Tag>
<Tag>security</Tag>
<Tag>technology</Tag>
<Tag>training</Tag>
<Tag>umbc</Tag>
<Group token="retired-575">UMBC Training Centers</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-575</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/original.jpg?1361981335</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xlarge.png?1361981335</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/large.png?1361981335</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/medium.png?1361981335</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/small.png?1361981335</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xsmall.png?1361981335</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/575/83756b985266168d0d29c6c9a146db50/xxsmall.png?1361981335</AvatarUrl>
<Sponsor>UMBC Training Centers</Sponsor>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Thu, 20 Feb 2014 14:56:01 -0500</PostedAt>
<EditAt>Thu, 20 Feb 2014 14:56:01 -0500</EditAt>
</NewsItem>

</News>
