<?xml version="1.0"?>
<News hasArchived="true" page="7719" pageCount="10777" pageSize="10" timestamp="Sun, 30 Aug 2026 17:00:38 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7719&amp;range=2">
<NewsItem contentIssues="true" id="42349" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42349">
<Title>Icon System with SVG Sprites</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>I've been a big proponent of icon fonts. Lots of sites really need a system for icons, and icon fonts offer a damn fine system. However, I think <strong>assuming you're good with IE 9+</strong>, using inline SVG and the <code>&lt;use&gt;</code> element to reference an icon is a superior system.</p>
    <p>First let's cover how it works.</p>
    <p></p>
    <p>A nice way to handle your icons is to have a folder full of <code>.svg</code> files. </p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/03/folder-of-svgs.png" alt="" style="max-width: 100%; height: auto;">
    That's one of the cool things about working with SVG - they <strong>are</strong> the source files.
    
    <p>They can be colored, not colored, multiple shapes, sizes, whatever.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/03/svg-whatever.png" alt="" style="max-width: 100%; height: auto;">
    <p>You can let Illustrator (or whatever) save it however, with all the cruft that comes along for the ride:</p>
    <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt;&#x000A;    &lt;!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  --&gt;&#x000A;    &lt;!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "<a href="http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd%22&amp;gt">http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"&amp;gt</a>;&#x000A;    &lt;svg version="1.1" id="Layer_1" xmlns="<a href="http://www.w3.org/2000/svg">http://www.w3.org/2000/svg</a>" xmlns:xlink="<a href="http://www.w3.org/1999/xlink">http://www.w3.org/1999/xlink</a>" x="0px" y="0px"&#x000A;    	 width="100px" height="100px" viewBox="0 0 100 100" enable-background="new 0 0 100 100" xml:space="preserve"&gt;&#x000A;    &lt;g&gt;&#x000A;    	&lt;path d="M50.049,0.3c14.18,0.332,25.969,5.307,35.366,14.923S99.675,36.9,100,51.409c-0.195,11.445-3.415,21.494-9.658,30.146 - yadda yadda yadda"/&gt;&#x000A;    &lt;/g&gt;&#x000A;    &lt;/svg&gt;</code></pre>
    <h3>Combine the .svg files</h3>
    <p>You can manually do this if you want. I've done it. You don't even have to look at the final file. Just call it <code>svg-defs.svg</code> or something.</p>
    <p>It should just be an <code>&lt;svg&gt;</code> tag, with a <code>&lt;defs&gt;</code> tag (which just means you are defining stuff to use later), and then a bunch of <code>&lt;g&gt;</code> (group) tags. Each <code>&lt;g&gt;</code> tag will have a unique ID, and will wrap all the paths and whatnot for each icon. </p>
    <pre><code>&lt;svg&gt;&#x000A;      &lt;defs&gt;&#x000A;    &#x000A;        &lt;g id="shape-icon-1"&gt;&#x000A;          &lt;!-- all the paths and shapes and whatnot for this icon --&gt;&#x000A;        &lt;g&gt;&#x000A;    &#x000A;        &lt;g id="shape-icon-2"&gt;&#x000A;          &lt;!-- all the paths and shapes and whatnot for this icon --&gt;&#x000A;        &lt;g&gt;&#x000A;    &#x000A;        &lt;!-- etc --&gt;&#x000A;    &#x000A;      &lt;/defs&gt;&#x000A;    &lt;/svg&gt;</code></pre>
    <p>Again you can do that by hand, but of course that's a bit laborious. Fabrice Weinberg has created a Grunt plugin called <a href="https://github.com/FWeinb/grunt-svgstore" rel="nofollow external" class="bo">grunt-svgstore</a> that automates this.</p>
    <p>If you've never used Grunt, you can do it. <a href="http://css-tricks.com/video-screencasts/130-first-moments-grunt/" rel="nofollow external" class="bo">Here's a screencast</a> to get you started.</p>
    <p>You can install it with:</p>
    <pre><code>npm install grunt-svgstore --save-dev</code></pre>
    <p>Make sure the task is available with:</p>
    <pre><code>grunt.loadNpmTasks('grunt-svgstore');</code></pre>
    <p>And then in the config:</p>
    <pre><code>svgstore: {&#x000A;      options: {&#x000A;        prefix : 'shape-', // This will prefix each &lt;g&gt; ID&#x000A;      },&#x000A;      files: {&#x000A;        'processed/svg-defs.svg': ['source/*.svg']&#x000A;      }&#x000A;    },</code></pre>
    <p>In the output file, <code>svg-defs.svg</code>, each icon (whatever paths and stuff from the source .svg file) will be wrapped up in a  tag with a unique, prefixed ID, and the file name (minus the .svg). Like:</p>
    <pre><code>&lt;g id="shape-codepen"&gt;</code></pre>
    <h3>Inject that SVG at the top of the document</h3>
    <p>Literally include it, like:</p>
    <pre><code>&lt;!DOCTYPE html&gt;&#x000A;    &lt;html lang="en"&gt;&#x000A;    &#x000A;    &lt;head&gt;&#x000A;      ...&#x000A;    &lt;/head&gt;&#x000A;    &#x000A;    &lt;body&gt;&#x000A;      &lt;?php include_once("processed/svg-defs.svg"); ?&gt;</code></pre>
    <p>Or however you want to do that.</p>
    <p>It's gotta be at the top, sadly, as there is <a href="https://code.google.com/p/chromium/issues/detail?id=349175" rel="nofollow external" class="bo">a Chrome bug</a> in which this isn't going to work if defined later.</p>
    <h3>Use the icons wherever</h3>
    <p>Now you can use them wherever! Like:</p>
    <pre><code>&lt;svg viewBox="0 0 100 100" class="icon shape-codepen"&gt;&#x000A;      &lt;use xlink:href="#shape-codepen"&gt;&lt;/use&gt;&#x000A;    &lt;/svg&gt;</code></pre>
    <p>Make sure you use those class names on the svg to size it. </p>
    <pre><code>/* Do whatever makes sense here.&#x000A;       Just know that the svg will be an &#x000A;       enormous 100% wide if you don't &#x000A;       reign in the width. */&#x000A;    .icon {&#x000A;      display: inline-block;&#x000A;      width: 25px;&#x000A;      height: 25px;&#x000A;    }</code></pre>
    <h3>Yay: you can style them (and their parts) with CSS</h3>
    <p>One of the reasons we loved icon fonts is the ability to style them with CSS. This technique one-ups that in that we do everything we could there, and more, because:</p>
    <ol>
    <li>We can style all the separate parts</li>
    <li>SVG has even more things you can control, like special filters and strokes</li>
    </ol>
    <p>The svg is (kinda) in the DOM, so JavaScript too. Here's some styling possibilities and a demo of this all at work:</p>
    <p>See the Pen <a href="http://codepen.io/chriscoyier/pen/EBHlD" rel="nofollow external" class="bo">EBHlD</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>Another way: IcoMoon</h3>
    <p><a href="http://icomoon.io/app/" rel="nofollow external" class="bo">IcoMoon</a>, which is known for producing icon fonts, actually does a fantastic job of producing SVG sprites as well. After selecting all the fonts you want, click the SVG button on the bottom and you'll get that output, including a demo page with the inline SVG method.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/03/icomoon-out.jpg" alt="" style="max-width: 100%; height: auto;">
    <h3>Browser Support</h3>
    <p>On the browser support front, the danger zones are IE 8 and down, Safari 5 and down, iOS 4.3 and down, and Android 2.3 and down. But if your policy is "the last two major versions" - you're looking at pretty much 100% support. </p>
    <p>Remember that icons can be used as a supporting role only, like always accompanied by a word. If that's the case, support isn't too big of a deal. If these are stand-alone, and non-display would make the site unusable, that's a big deal.</p>
    <p>I probably would go for icon fonts, as the support there is much deeper. Just make sure you <a href="http://css-tricks.com/html-for-icon-font-usage/" rel="nofollow external" class="bo">do it up right</a>. </p>
    <h3>This is going to get a lot better</h3>
    <p>Ideally we'd be able to do this:</p>
    <pre><code>&lt;svg viewBox="0 0 100 100" class="icon shape-codepen"&gt;&#x000A;      &lt;use xlink:href="<a href="http://cdn.css-tricks.com/images/svg-defs.svg#shape-codepen%22&gt;&lt;/use&amp;gt">http://cdn.css-tricks.com/images/svg-defs.svg#shape-codepen"&gt;&lt;/use&amp;gt</a>;&#x000A;    &lt;/svg&gt;</code></pre>
    <p>This <em>does</em> work in some browsers, meaning you could skip the include at the top of the document. Doing it this way means an extra HTTP request, but that means you can utilize caching more efficiently (not bloat document caching). In testing, Jonathan Neal discovered you need to have the xmlns attribute on the <code>&lt;svg&gt;</code> for it to work:</p>
    <pre><code>&lt;svg xmlns="<a href="http://www.w3.org/2000/svg%22&amp;gt">http://www.w3.org/2000/svg"&amp;gt</a>;</code></pre>
    <p>But even then, no support in any IE. <strong>Unless</strong> you wanted to swap out the whole <code>&lt;svg&gt;&lt;use&gt;</code> with an <code>&lt;object&gt;</code>, which does work. Jonathan Neal again <a rel="nofollow external" class="bo">figured this out</a>:</p>
    <pre><code>/MSIE|Trident/.test(navigator.userAgent) &amp;&amp; document.addEventListener('DOMContentLoaded', function () {&#x000A;      [].forEach.call(document.querySelectorAll('svg'), function (svg) {&#x000A;        var use = svg.querySelector('use'); &#x000A;    &#x000A;        if (use) {&#x000A;          var object = document.createElement('object');&#x000A;          object.data = use.getAttribute('xlink:href');&#x000A;          object.className = svg.getAttribute('class');&#x000A;          svg.parentNode.replaceChild(object, svg);&#x000A;        }&#x000A;      });&#x000A;    });</code></pre>
    <p><a rel="nofollow external" class="bo">His demo</a> now also has a method which makes an Ajax request for the contents and injects that, which allows the fills to work in IE 9. Not as efficient, but more like a polyfill.</p>
    <p>I imagine someday straight up <code>&lt;svg&gt;&lt;use&gt;</code> linking right to the .svg will be the way to go. Or even perhaps <code>&lt;img&gt;</code> working with URL fragment identifiers on the SVG.</p>
    <hr>
    <p>Browsers treat <code>&lt;use&gt;</code> like the shadow DOM:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/03/svg-shadow.png" alt="" style="max-width: 100%; height: auto;">
    <p>Right now, we can target, say, an individual <code>&lt;path&gt;</code> with CSS, like:</p>
    <pre><code>.targetting-a-path {&#x000A;      fill: red;&#x000A;    }</code></pre>
    <p>But that will affect <em>all</em> instances of that path. You'd think you could do:</p>
    <pre><code>svg.shape-version-2 .targetting-a-path {&#x000A;      fill: red;&#x000A;    }</code></pre>
    <p>But that doesn't work. It crosses that shadow DOM boundary. Ideally you'd use the "hat" selector to break that:</p>
    <pre><code>svg.shape-version-2 ^ .targetting-a-path {&#x000A;      fill: red;&#x000A;    }</code></pre>
    <p>But that's not supported yet either and it's not entirely clear if that's exactly how that will work or not. </p>
    <h3>"Versus" icon fonts</h3>
    <p><strong>Vector-based:</strong> tie</p>
    <p><strong>Style with CSS:</strong> slight edge to SVG sprites (targeting parts, SVG specific styling like strokes)</p>
    <p><strong>Weird failures:</strong> SVG seems to just work (when supported). Icon fonts seem to fail in weird ways. For instance, you map the characters to normal letters, then the font loading fails and you get random characters abound. Or you map to "Private Use Area" and some browsers decide to re-map them to <a href="http://cdn.css-tricks.com/wp-content/uploads/2014/03/icon-font-fail.png" rel="nofollow external" class="bo">really weird characters like roses</a>, but it's hard to replicate. Or you want to host the @font-face files on a CDN, but that's cross-origin and Firefox hates that, so you need your server to serve the right cross-origin headers, but your Nginx setup isn't picking that up right, SIGH. SVG wins this one.</p>
    <p><strong>Semantics:</strong> Not a huge deal, but I think an <code>&lt;svg&gt;</code> makes a bit more sense for an image than a <code>&lt;span&gt;</code>.</p>
    <p><strong>Accessibility:</strong> Maybe someone can tell me? Can we/should we give the <code>&lt;svg&gt;</code> a title attribute or something? Or a <code>&lt;text&gt;</code> element inside that we visually hide? <strong>Update:</strong> the <code>&lt;title&gt;</code> element <a href="https://twitter.com/dirkschulze/status/443769999153303552" rel="nofollow external" class="bo">might do</a>. Or perhaps the <code>&lt;desc&gt;</code> element as used in this <a href="http://www.w3.org/TR/SVG-access/#Fig-3.5" rel="nofollow external" class="bo">SVG access spec</a>.</p>
    <p><strong>Ease of use:</strong> Tools like <a href="http://fontello.com/" rel="nofollow external" class="bo">Fontello</a> and <a href="http://icomoon.io/" rel="nofollow external" class="bo">IcoMoon</a> are pretty good for an icon font workflow, but the folder-full-of-SVGs with Grunt squishing them together for you is even easier, I think.</p>
    <hr>
    <p>Ian Feather <a href="http://ianfeather.co.uk/ten-reasons-we-switched-from-an-icon-font-to-svg/" rel="nofollow external" class="bo">posted an article</a> about why they switched away from icon fonts as well and I agree with every single point. </p>
    <hr>
    <p><small><a href="http://css-tricks.com/svg-sprites-use-better-icon-fonts/" rel="nofollow external" class="bo">Icon System with SVG Sprites</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>I've been a big proponent of icon fonts. Lots of sites really need a system for icons, and icon fonts offer a damn fine system. However, I think assuming you're good with IE 9+, using inline SVG...</Summary>
<Website>http://css-tricks.com/svg-sprites-use-better-icon-fonts/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42349/guest@my.umbc.edu/4048965b7513f7d7854e131a45cb56f2/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>Wed, 12 Mar 2014 11:16:00 -0400</PostedAt>
<EditAt>Wed, 12 Mar 2014 11:16:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42347" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42347">
<Title>Learn CSS Layout on Treehouse</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Our new course on CSS layout has been released! In <a href="http://teamtreehouse.com/library/css-layout-techniques" rel="nofollow external" class="bo">CSS Layout Techniques,</a> you’ll learn to use the most common layout and positioning methods of web design.</p>
    <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/17KdcxmHcqU" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div>
    <p>Throughout the course, we’ll build a layout using display methods, floats, positioning schemes — even Flexbox, the latest and most advanced CSS layout feature. We’ll cover the strengths and benefits of each method, along with common layout problems and how you can solve them. At the end of the course, we’ll cover how to create a responsive grid system, using many of the layout and positioning techniques covered in the course.</p>
    <p><a href="http://teamtreehouse.com/library/css-layout-techniques" rel="nofollow external" class="bo">Get started with CSS Layout Techniques</a></p>
    <p>The post <a href="http://blog.teamtreehouse.com/learn-css-layout-treehouse" rel="nofollow external" class="bo">Learn CSS Layout on Treehouse</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>Our new course on CSS layout has been released! In CSS Layout Techniques, you’ll learn to use the most common layout and positioning methods of web design.    [Video]    Throughout the course,...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/4McJ5ThS6ak/learn-css-layout-treehouse</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42347/guest@my.umbc.edu/7748baa333b5428a1f3749a91f25c398/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>css-grids</Tag>
<Tag>css-layout</Tag>
<Tag>css3</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>flexbox</Tag>
<Tag>grids</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>learn-layout</Tag>
<Tag>make-a-website</Tag>
<Tag>responsive</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 12 Mar 2014 11:15:27 -0400</PostedAt>
<EditAt>Wed, 12 Mar 2014 11:15:27 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42346" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42346">
<Title>NEW Full Time Positions for Information Technology Students</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h2>
    <br>NEW Full Time Positions for Information Technology Students</h2>
    <hr>
    <div><div>
    <span>During the last week multiple full-time positions have been posted to UMBCworks.  Check out these key positions today.</span><br><br><p><span>I</span><strong><span>Apply Now!</span></strong></p>
    <p><span>ID: </span><span>9261692 – Computer Network Operations Operator <em>(National Security Agency)</em></span></p>
    <p><span> </span></p>
    <p><span>ID: 9264389 – Helpdesk Technician (The Whiting–Turner Contracting Company)</span></p>
    <p><span> </span></p>
    <p><span>ID: 9263689 – Java Programmer Analyst (Telligen)</span></p>
    <p><span> </span></p>
    <p><span>ID: 9264006 - Linux Systems Administrator (Symplicity Corporation)</span></p>
    <p><span> </span></p>
    <p><span>ID: 9264282 – Software Developer (Structural Group)</span></p>To access these positions, login to your UMBCworks account (via the link in the Jobs &amp; Internships topic in myUMBC) and find details and application instructions as well as hundreds of other job postings.<br><br><span>Please note you MUST have an approved resume to apply to positions.  To schedule an appointment, access our online system in UMBCworks or call 401-455-2216.</span>
    </div></div>
    <p><br></p>
    <p><span> </span></p>
    </div>
]]>
</Body>
<Summary>NEW Full Time Positions for Information Technology Students    During the last week multiple full-time positions have been posted to UMBCworks.  Check out these key positions today.   IApply Now!...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42346/guest@my.umbc.edu/d9297c3683b011639b632ca1e3bcec36/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>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 12 Mar 2014 10:44:23 -0400</PostedAt>
<EditAt>Wed, 12 Mar 2014 10:45:48 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="42345" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42345">
<Title>New Internships for IS,CS, and CE Majors</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><br></p>
    <div><div><div><div><div>
    <span>During the last week multiple internship positions have been posted to UMBCworks.  Check out these key positions today.</span><br><br><p><strong>Apply Now!</strong></p>
    <p><br></p>
    <p><span>ID:</span><span> 9264242 – Programmer Analyst Intern <em>(</em>Aon Corporation<em>)</em></span></p>
    <p><em><span> </span></em></p>
    <p><span>ID: 9259178 – Data Management/Systems Administration Intern (AJ Video Services)</span></p>
    <p><span> </span></p>
    <p><span>ID: </span><span>9264379 – Embedded/Controls Design Engineering Co-Op (Xerox Corporation)</span></p>
    <p><em><span> </span></em></p>
    <p><span>ID: 9263701 – Mobile Application Development Intern (Graphtrack)</span></p>
    <p><br></p>
    <p><span> </span></p>
    <p><span>ID: 9259185 – Software Engineer (Kiva Technologies LLC)</span></p>To access these positions and many more,  login to your UMBCworks account (via the link in the Jobs &amp; Internships topic in myUMBC) and find details and application instructions as well as hundreds of other job postings.<br><br>Please note you MUST have an approved resume to apply to positions and your internship release.  To schedule an appointment, access our online system in UMBCworks or call 410-455-2216.<br><br><div>Check out all of our great resources online here:</div>
    <div><a href="http://careers.umbc.edu/index.php" rel="nofollow external" class="bo">http://careers.umbc.edu/index.php</a></div>
    </div></div></div></div></div>
    </div>
]]>
</Body>
<Summary>During the last week multiple internship positions have been posted to UMBCworks.  Check out these key positions today.   Apply Now!     ID: 9264242 – Programmer Analyst Intern (Aon Corporation)...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42345/guest@my.umbc.edu/dc9f946728375e5a430c96473b4e6aed/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>
<PawCount>1</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 12 Mar 2014 10:42:23 -0400</PostedAt>
<EditAt>Wed, 12 Mar 2014 10:45:01 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42344" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42344">
<Title>ENTR Speaker: Melinda Wittstock Founder &amp; CEO, Verifeed</Title>
<Tagline>Outside the Box: Finding Your Path as a Female Entrepreneur</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <div>A venture capitalist once told Melinda she "didn't fit the pattern". She doesn't. She's not an engineer. She doesn't spend any time in her garage, and ramen? Too many carbs. Women have a hard time raising the capital they need to launch high-growth technology businesses and Melinda is going to talk about how women can reinvent the rules - sharing her most valuable lessons (most of them from failing). Success is all about being resilient, agile</div>
    <div>and non-stop learning. She'll tell you what not to do - as much as what to do!</div>
    <div><br></div>
    <div>Melinda is a serial social media and 'Big Data' entrepreneur, acknowledged thought-leader in leveraging social data for actionable insights, and awardwinning content creator. With 20 years experience across many of the world’s top media brands (BBC, London Times, ABC News, CNBC, MSNBC) and having launched her own successful businesses, Melinda brings deep cross-disciplinary expertise, proven agile iteration strategies for measurable innovation in product, social engagement and win-win business development for start-ups to Fortune 500 companies.</div>
    <div><br></div>
    <div><strong>Melinda Wittstock, Founder and CEO of Verifeed, will be speaking on <span>Wed Apr 30, noon</span>-1 in UC 310.</strong></div>
    </div>
]]>
</Body>
<Summary>A venture capitalist once told Melinda she "didn't fit the pattern". She doesn't. She's not an engineer. She doesn't spend any time in her garage, and ramen? Too many carbs. Women have a hard time...</Summary>
<Website>http://entrepreneurship.umbc.edu/</Website>
<AttachmentKind>Flyer</AttachmentKind>
<AttachmentUrl>https://assets3-my.umbc.edu/system/shared/attachments/19ada7748b7c8b2590981fa725027720/6a9499f6/news/000/042/344/30b1b5b6990012b272d5251f6a31489c/Melinda Wittstock - April 2014.pdf?1394633852</AttachmentUrl>
<Attachments>
<Attachment kind="Flyer" url="https://my3.my.umbc.edu/posts/42344/attachments/12837"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42344/guest@my.umbc.edu/8e67f8503f2dc93e1aac0826a335d484/api/pixel</TrackingUrl>
<Group token="inds">Individualized Study </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/inds</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xsmall.png?1775678457</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/original.png?1775678457</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xxlarge.png?1775678457</AvatarUrl>
<AvatarUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xlarge.png?1775678457</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/large.png?1775678457</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/medium.png?1775678457</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/small.png?1775678457</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xsmall.png?1775678457</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/208/d198d05a1c66aa65c037907edcd05c5d/xxsmall.png?1775678457</AvatarUrl>
<Sponsor>The Alex. Brown Center for Entrepreneurship</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/344/87984ef92f4eb26a3400598e2fe21c19/xxlarge.jpg?1394633934</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/344/87984ef92f4eb26a3400598e2fe21c19/xlarge.jpg?1394633934</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/344/87984ef92f4eb26a3400598e2fe21c19/large.jpg?1394633934</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/344/87984ef92f4eb26a3400598e2fe21c19/medium.jpg?1394633934</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/344/87984ef92f4eb26a3400598e2fe21c19/small.jpg?1394633934</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/344/87984ef92f4eb26a3400598e2fe21c19/xsmall.jpg?1394633934</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/344/87984ef92f4eb26a3400598e2fe21c19/xxsmall.jpg?1394633934</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 12 Mar 2014 10:19:19 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42343" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42343">
<Title>A Place for UMBC Entrepreneurs</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <h5>by Achsah Joseph</h5>
    <div><br></div>
    <div>In my sophomore year at UMBC, I took POLI 205: Civic Engagement and Social Entrepreneurship. Through the class, I worked with a group of students to find out a way to promote civic engagement and human rights issues at UMBC. As we put together a proposal, we needed a place that would allow us to work on our project but also let us interact with like-minded people with whom we could share ideas, receive feedback and refine our plans. That space didn’t exist then, but it does now... (<a href="http://umbcbreakingground.wordpress.com/2014/03/12/a-place-for-umbc-entrepreneurs/" rel="nofollow external" class="bo">continue reading</a>)</div>
    </div>
]]>
</Body>
<Summary>by Achsah Joseph     In my sophomore year at UMBC, I took POLI 205: Civic Engagement and Social Entrepreneurship. Through the class, I worked with a group of students to find out a way to promote...</Summary>
<Website>http://umbcbreakingground.wordpress.com/2014/03/12/a-place-for-umbc-entrepreneurs/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42343/guest@my.umbc.edu/f84d8f3ae0880778ce8c3a7c5f1bb093/api/pixel</TrackingUrl>
<Group token="bg">UMBC BreakingGround</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bg</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xsmall.png?1360169927</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/original.png?1360169927</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xxlarge.png?1360169927</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xlarge.png?1360169927</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/large.png?1360169927</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/medium.png?1360169927</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/small.png?1360169927</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xsmall.png?1360169927</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/493/e0dc61eceffa1a7dff9d396b4b7c5011/xxsmall.png?1360169927</AvatarUrl>
<Sponsor>UMBC BreakingGround</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/343/34e81352505555b8fea122cba1403273/xxlarge.jpg?1394630208</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/343/34e81352505555b8fea122cba1403273/xlarge.jpg?1394630208</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/343/34e81352505555b8fea122cba1403273/large.jpg?1394630208</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/343/34e81352505555b8fea122cba1403273/medium.jpg?1394630208</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/343/34e81352505555b8fea122cba1403273/small.jpg?1394630208</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/343/34e81352505555b8fea122cba1403273/xsmall.jpg?1394630208</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/343/34e81352505555b8fea122cba1403273/xxsmall.jpg?1394630208</ThumbnailUrl>
<PawCount>3</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 12 Mar 2014 09:17:35 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42336" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42336">
<Title>JavaScript Style Guide</Title>
<Body>
<![CDATA[
    <div class="html-content">JavaScript has become ubiquotous in web development. But that comes with a price. A lot of bad code. And as you know, one of the best ways to learn is to read others code, bad code leads to learning bad coding, especially for learners.</div>
]]>
</Body>
<Summary>JavaScript has become ubiquotous in web development. But that comes with a price. A lot of bad code. And as you know, one of the best ways to learn is to read others code, bad code leads to...</Summary>
<Website>http://feedproxy.google.com/~r/w3resource/~3/LktSorQReKo/javascript-style-guide.php</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42336/guest@my.umbc.edu/2ad8a0b9089a4c09003062d7a20746b6/api/pixel</TrackingUrl>
<Tag>backend</Tag>
<Tag>css</Tag>
<Tag>frontend</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>javascript</Tag>
<Tag>nosql</Tag>
<Tag>sql</Tag>
<Tag>xhtml</Tag>
<Tag>xml</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 12 Mar 2014 08:46:05 -0400</PostedAt>
<EditAt>Thu, 15 May 2014 09:16:23 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42337" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42337">
<Title>DealBook: Maker of Candy Crush Puts Value at $7.6 Billion</Title>
<Body>
<![CDATA[
    <div class="html-content">The offering is at a discount to other video game companies, possibly reflecting caution about King Digital Entertainment’s reliance on its megahit, which accounts for nearly 80 percent of its earnings.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F12%2Fking-maker-of-candy-crush-game-seeks-up-to-532-8-million-in-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Maker+of+Candy+Crush+Puts+Value+at+%247.6+Billion" 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%2F03%2F12%2Fking-maker-of-candy-crush-game-seeks-up-to-532-8-million-in-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Maker+of+Candy+Crush+Puts+Value+at+%247.6+Billion" 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%2F03%2F12%2Fking-maker-of-candy-crush-game-seeks-up-to-532-8-million-in-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Maker+of+Candy+Crush+Puts+Value+at+%247.6+Billion" 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%2F03%2F12%2Fking-maker-of-candy-crush-game-seeks-up-to-532-8-million-in-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Maker+of+Candy+Crush+Puts+Value+at+%247.6+Billion" 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%2F03%2F12%2Fking-maker-of-candy-crush-game-seeks-up-to-532-8-million-in-i-p-o%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Maker+of+Candy+Crush+Puts+Value+at+%247.6+Billion" 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/191801391686/u/0/f/640387/c/34625/s/38165d7a/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801391686/u/0/f/640387/c/34625/s/38165d7a/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801391686/u/0/f/640387/c/34625/s/38165d7a/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801391686/u/0/f/640387/c/34625/s/38165d7a/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801391686/u/0/f/640387/c/34625/s/38165d7a/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801391686/u/0/f/640387/c/34625/s/38165d7a/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801391686/u/0/f/640387/c/34625/s/38165d7a/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801391686/u/0/f/640387/c/34625/s/38165d7a/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The offering is at a discount to other video game companies, possibly reflecting caution about King Digital Entertainment’s reliance on its megahit, which accounts for nearly 80 percent of its...</Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38165d7a/sc/21/l/0Ldealbook0Bnytimes0N0C20A140C0A30C120Cking0Emaker0Eof0Ecandy0Ecrush0Egame0Eseeks0Eup0Eto0E5320E80Emillion0Ein0Ei0Ep0Eo0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42337/guest@my.umbc.edu/fbdb7e3a8144cf78417f5cac10ed6207/api/pixel</TrackingUrl>
<Tag>candy-crush-video-game</Tag>
<Tag>i-p-o-offerings</Tag>
<Tag>initial-public-offerings</Tag>
<Tag>king-digital-entertainment</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>Wed, 12 Mar 2014 08:20:47 -0400</PostedAt>
<EditAt>Wed, 12 Mar 2014 20:54:00 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="42335" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42335">
<Title>Summer Research Opportunity in Pharmaceutical Sciences!</Title>
<Tagline>University of Maryland School of Pharmacy</Tagline>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Summer interns earn $3,500 while working for eight weeks in a research laboratory with a faculty mentor. Interns have the opportunity to learn cutting-edge research skills from faculty, post-doctoral fellows, and current graduate students. Mentor assignments are based on the intern's interests and goals.</p>
    <h3>Eligibility:</h3>
    <p>Applicants should be US citizens or permanent residents who have completed one year of undergraduate work and are interested in obtaining a PhD in Pharmaceutical Sciences.</p>
    <h3>How To Apply:</h3>
    <p>The application deadline is <strong>April 15</strong>.</p>
    <p>To apply, please:</p>
    <ol>
    <li>Complete the <a href="http://www.pharmacy.umaryland.edu/admissions/psc/internship/form.html" rel="nofollow external" class="bo">online application</a>, which includes two essays, each with a 500 word limit. Detail your research interests and why you are interested in participating in the Summer Research Program, and describe your research experience, if applicable.</li>
    <li>Submit transcripts from all colleges attended (photocopies are allowed).</li>
    <li>Submit two letters of recommendation.</li>
    </ol>
    </div>
]]>
</Body>
<Summary>Summer interns earn $3,500 while working for eight weeks in a research laboratory with a faculty mentor. Interns have the opportunity to learn cutting-edge research skills from faculty,...</Summary>
<Website>http://www.pharmacy.umaryland.edu/admissions/psc/internship</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42335/guest@my.umbc.edu/fa053ccb243446f864b24bd105d73c11/api/pixel</TrackingUrl>
<Tag>pharmacy</Tag>
<Tag>research</Tag>
<Tag>summer</Tag>
<Group token="undergradresearch">Undergraduate Research</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/undergradresearch</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/original.jpg?1600355057</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xlarge.png?1600355057</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/large.png?1600355057</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/medium.png?1600355057</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/small.png?1600355057</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xsmall.png?1600355057</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/006/875606ced2b629148af4caa1a4e8dd3c/xxsmall.png?1600355057</AvatarUrl>
<Sponsor>Undergraduate Research</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/335/bb5e4f2974573e970a73419f0a5f7f41/xxlarge.jpg?1394626327</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/042/335/bb5e4f2974573e970a73419f0a5f7f41/xlarge.jpg?1394626327</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/042/335/bb5e4f2974573e970a73419f0a5f7f41/large.jpg?1394626327</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/042/335/bb5e4f2974573e970a73419f0a5f7f41/medium.jpg?1394626327</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/335/bb5e4f2974573e970a73419f0a5f7f41/small.jpg?1394626327</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/335/bb5e4f2974573e970a73419f0a5f7f41/xsmall.jpg?1394626327</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/042/335/bb5e4f2974573e970a73419f0a5f7f41/xxsmall.jpg?1394626327</ThumbnailUrl>
<PawCount>2</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Wed, 12 Mar 2014 08:12:45 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="42338" important="false" status="posted" url="https://my3.my.umbc.edu/posts/42338">
<Title>DealBook: Shares in a Media Group Soar Well Before Alibaba Makes a Deal</Title>
<Body>
<![CDATA[
    <div class="html-content">Shares in a Hong Kong media group began to rally before the announcement that Alibaba, the Chinese e-commerce giant, had reached an $804 million deal to buy control of the company.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fdealbook.nytimes.com%2F2014%2F03%2F12%2Fshares-rise-even-before-alibaba-makes-deal%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Shares+in+a+Media+Group+Soar+Well+Before+Alibaba+Makes+a+Deal" 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%2F03%2F12%2Fshares-rise-even-before-alibaba-makes-deal%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Shares+in+a+Media+Group+Soar+Well+Before+Alibaba+Makes+a+Deal" 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%2F03%2F12%2Fshares-rise-even-before-alibaba-makes-deal%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Shares+in+a+Media+Group+Soar+Well+Before+Alibaba+Makes+a+Deal" 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%2F03%2F12%2Fshares-rise-even-before-alibaba-makes-deal%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Shares+in+a+Media+Group+Soar+Well+Before+Alibaba+Makes+a+Deal" 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%2F03%2F12%2Fshares-rise-even-before-alibaba-makes-deal%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=DealBook%3A+Shares+in+a+Media+Group+Soar+Well+Before+Alibaba+Makes+a+Deal" 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/191801391684/u/0/f/640387/c/34625/s/38165d88/sc/2/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801391684/u/0/f/640387/c/34625/s/38165d88/sc/2/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801391684/u/0/f/640387/c/34625/s/38165d88/sc/2/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801391684/u/0/f/640387/c/34625/s/38165d88/sc/2/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/191801391684/u/0/f/640387/c/34625/s/38165d88/sc/2/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801391684/u/0/f/640387/c/34625/s/38165d88/sc/2/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/191801391684/u/0/f/640387/c/34625/s/38165d88/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/191801391684/u/0/f/640387/c/34625/s/38165d88/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Shares in a Hong Kong media group began to rally before the announcement that Alibaba, the Chinese e-commerce giant, had reached an $804 million deal to buy control of the company.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38165d88/sc/2/l/0Ldealbook0Bnytimes0N0C20A140C0A30C120Cshares0Erise0Eeven0Ebefore0Ealibaba0Emakes0Edeal0C0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/42338/guest@my.umbc.edu/f0af8b3bba2eba6649afcb6759cbda99/api/pixel</TrackingUrl>
<Tag>alibaba-com</Tag>
<Tag>e-commerce</Tag>
<Tag>hong-kong</Tag>
<Tag>ma-jack</Tag>
<Tag>mergers-and-acquisitions</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>Wed, 12 Mar 2014 07:25:07 -0400</PostedAt>
<EditAt>Wed, 12 Mar 2014 19:59:59 -0400</EditAt>
</NewsItem>

</News>
