<?xml version="1.0"?>
<News hasArchived="true" page="7866" pageCount="10751" pageSize="10" timestamp="Sat, 15 Aug 2026 10:42:56 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7866">
<NewsItem contentIssues="true" id="40590" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40590">
<Title>Thought Process of a Front End Problem</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><strong>"Your fonts render weirdly on Opera mobile."</strong></p>
    <p>Thanks for taking the time to let me know. Can you send me a screenshot so I can see?</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/opera-mobile-fonts.png" alt="" style="max-width: 100%; height: auto;">
    <p>Wow that is weird. I use custom fonts, via <code>@font-face</code> and a third party service. This isn't just a matter of the custom font failing and falling back to a different font, which may look weird because of different spacing and such. It appears that:</p>
    <ul>
    <li>Some characters are rendered in the correct @font-face font</li>
    <li>Some characters are rendered in the fallback font</li>
    <li>Some characters fail to render at all (box-with-x thing)</li>
    </ul>
    <p>First, I know there are two different kinds of Opera mobile browsers. "Opera Mini" and "Opera Mobile". I should bone up on that quick. </p>
    <p>{Googles "opera mini and opera mobile".}</p>
    <p>Find some weird forums posts, click around a little, end up at <a href="http://my.opera.com/mobile/blog/2009/12/03/difference-between-opera-mini-5-and-opera-mobile-10" rel="nofollow external" class="bo">a decent blog post</a> that explains the difference.</p>
    <blockquote><p>In Opera Mini, the Opera Presto browser engine is located on a server. In Opera Mobile, it is installed on your phone.</p></blockquote>
    <p>The person who emailed about the font problem said it was Opera Mobile, so I'll test that first. But as I imagine everyone in the world doesn't know there are even different types of Opera browsers on mobile devices, I'll test the other if I need to. It actually kinda seems like Mini might be the problem as I can imagine a server-side rendering engine might do some special shenanigans like "only wait X seconds" for third-party resources or something like that, leaving a font file half-downloaded.</p>
    <p>I wonder if I can replicate this myself. </p>
    <p>I have a Kindle Fire around here somewhere, but that thing has that weird Amazon Silk browser on it and I don't think it allows me to download any other browser. I have a Nexus 7 I bought for testing on Android, but I can never get it to turn on. I got it to once but I had to take the back cover off and basically stab it with a knife until it worked. I haven't gotten around to throwing it into a volcano yet.</p>
    <p>Maybe I should buy a new Android device for testing that is more well reviewed. Or maybe a device that has Opera on it by default. Oh well, no time for that right this second.</p>
    <p>Maybe <a href="http://www.browserstack.com/" rel="nofollow external" class="bo">BrowerStack</a> can emulate it for me? Ooooh it can, nice.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/browserstack.png" alt="" style="max-width: 100%; height: auto;">
    <p>Bingo.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/emulation.png" alt="" style="max-width: 100%; height: auto;">
    <p>Now at least I can replicate the problem. That way if I think of something to change I can test the results. Although unfortunately there are are zero DevTools built into this emulator so it can't help me figure out the problem by itself.</p>
    <p>Maybe there is an emulator I can run myself? <a href="http://www.opera.com/developer/mobile-emulator" rel="nofollow external" class="bo">Ooooh there is!</a> Good on ya, Opera.</p>
    <p>While I wait for this to download I'll Google around a little. Hmmmm, <a href="http://www.zeldman.com/2010/04/11/opera-hates-my-web-font/" rel="nofollow external" class="bo">a post by Mr. Zeldman</a> that is <strong>extremely</strong> similar. His solution was to use a third-party service (e.g. <a href="http://typekit.com/" rel="nofollow external" class="bo">Typekit</a>), essentially because they are in the business of getting this right. Or use a trusted tool like the <a href="http://www.fontsquirrel.com/tools/webfont-generator" rel="nofollow external" class="bo">Font Squirrel generator</a> to ensure the best quality files and syntax.</p>
    <p>Unfortunately I'm already using a third-party service (<a href="http://www.typography.com/cloud/welcome/" rel="nofollow external" class="bo">Cloud Typography</a>), so I don't have much control there. I'm going to keep working on this myself, but I'm going to fire off an email to them describing the issue. Most importantly so they know about it, but also because they might have a fix up I could try.</p>
    <p>{Types up email and sends.}</p>
    <p>OK that emulator finished downloading.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/emulator-local.png" alt="" style="max-width: 100%; height: auto;">
    <p>It works. Cool. The download site made it seem like you could use Opera Dragonfly to debug from this, but in <a href="http://www.opera.com/dragonfly/documentation/remote/" rel="nofollow external" class="bo">reading the docs</a> for it, it seems like you can only do that for local sites and it's a bit of a weird setup. Plus now I look and in the version of Opera I have it's basically the Chrome DevTools now, not Dragonfly. So I'd have to find some old version of Opera to download to do this? Uckgh I feel like this rabbit hole is getting too deep.</p>
    <p>Maybe I should check out another site that is also using the same third-party service as CSS-Tricks. We're using Cloud Typography on CodePen also to serve font, but totally different fonts, so that should be an interesting test too.</p>
    <p>Ah ha! Janky in the same kinda way.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/opera-codepen.png" alt="" style="max-width: 100%; height: auto;">
    <p>That's the strongest lead yet. It must just be how Cloud Typography does things. Unfortunately I have fairly little control over it, because they provide the files to you and they are intentionally rather obfuscated. </p>
    <p>I do have control on whether I serve the stylesheet at all or not though. I know I'm not ready to ditch custom fonts all together, because I like them and they generally work fine, but maybe I can ditch them somehow just for Opera Mobile.</p>
    <p>It's always a little tempting to try User Agent Detection. Opera <a href="http://my.opera.com/community/openweb/idopera/" rel="nofollow external" class="bo">provides docs</a> on what they do there and I could always test. But I'm hesitant. Not only is it <a href="http://css-tricks.com/browser-detection-is-bad/" rel="nofollow external" class="bo">theoretically bad</a>, but every time I've ever done it I've regretted it because it either didn't catch what I wanted it too, caught too much, or both. Plus, I'm not finding any good-looking PHP code snippets for specifically this and I'm a better ballet dancer than RegEx writer. Do I want to head down that road again? Not really.</p>
    <p>I could look into analytics a bit here also to see the scope of this problem. Here's the top 10 browsers here:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2014/01/top-10.png" alt="" style="max-width: 100%; height: auto;">
    <p>"Opera Mobile" doesn't show up anywhere in the list, even looking at all 189 represented. It must either be lumped in with "Opera" (some portion of 1%) or "Opera Mini" (some portion of 0.1%). Mobile in its entirety is around 3% on this site, which includes iOS and Android which are far more popular. So I think this is affecting probably around 0.25% of people.</p>
    <p>I really want to fix this, but with the super small numbers involved, the lack of good testing tools, the out-of-my-hands bits, and the potential dangers of some fixes, I feel rather helpless. I guess I'll just wait and see what the provider has to say.</p>
    <hr>
    <p><strong>This is just a story of what it's like being a front-end developer. It's not even about fonts so much as the struggle, the process, and the choices.</strong></p>
    <hr>
    
    <p><small><a href="http://css-tricks.com/thought-process-front-end-problem/" rel="nofollow external" class="bo">Thought Process of a Front End Problem</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>"Your fonts render weirdly on Opera mobile."   Thanks for taking the time to let me know. Can you send me a screenshot so I can see?    Wow that is weird. I use custom fonts, via @font-face and a...</Summary>
<Website>http://css-tricks.com/thought-process-front-end-problem/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40590/guest@my.umbc.edu/2a8f59140c4801d949d2df1d93a46efc/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>Sat, 25 Jan 2014 14:53:51 -0500</PostedAt>
<EditAt>Sat, 25 Jan 2014 14:53:51 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40589" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40589">
<Title>Vocations: The Social Media Marketer: I&#8217;ll Be Your Billboard</Title>
<Body>
<![CDATA[
    <div class="html-content">Jason Sadler appears on social media, wearing corporate T-shirts for a fee.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F26%2Fjobs%2Fill-be-your-billboard.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Vocations%3A+The+Social+Media+Marketer%3A+I%E2%80%99ll+Be+Your+Billboard" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F26%2Fjobs%2Fill-be-your-billboard.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Vocations%3A+The+Social+Media+Marketer%3A+I%E2%80%99ll+Be+Your+Billboard" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F26%2Fjobs%2Fill-be-your-billboard.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Vocations%3A+The+Social+Media+Marketer%3A+I%E2%80%99ll+Be+Your+Billboard" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F26%2Fjobs%2Fill-be-your-billboard.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Vocations%3A+The+Social+Media+Marketer%3A+I%E2%80%99ll+Be+Your+Billboard" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F26%2Fjobs%2Fill-be-your-billboard.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Vocations%3A+The+Social+Media+Marketer%3A+I%E2%80%99ll+Be+Your+Billboard" 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/186529699192/u/0/f/640387/c/34625/s/3658bf04/sc/5/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529699192/u/0/f/640387/c/34625/s/3658bf04/sc/5/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186529699192/u/0/f/640387/c/34625/s/3658bf04/sc/5/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529699192/u/0/f/640387/c/34625/s/3658bf04/sc/5/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186529699192/u/0/f/640387/c/34625/s/3658bf04/sc/5/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529699192/u/0/f/640387/c/34625/s/3658bf04/sc/5/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186529699192/u/0/f/640387/c/34625/s/3658bf04/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529699192/u/0/f/640387/c/34625/s/3658bf04/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Jason Sadler appears on social media, wearing corporate T-shirts for a fee.      </Summary>
<Website>http://www.nytimes.com/2014/01/26/jobs/ill-be-your-billboard.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40589/guest@my.umbc.edu/9867f02aaf4245a83761a43c73028d06/api/pixel</TrackingUrl>
<Tag>advertising-and-marketing</Tag>
<Tag>facebook-inc-fb-nasdaq</Tag>
<Tag>new</Tag>
<Tag>social-media</Tag>
<Tag>starbucks-corporation-sbux-nasdaq</Tag>
<Tag>t-shirts-apparel</Tag>
<Tag>technology</Tag>
<Tag>twitter-twtr-nyse</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>Sat, 25 Jan 2014 13:08:06 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="40588" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40588">
<Title>Yo Polymer &#8211; A Quick Tour Of Web Component Tooling</Title>
<Body>
<![CDATA[
    <div class="html-content">In the HTML5 Rocks write-up and videos for my talk “yo polymer”, I walk through Web Components – an exciting new set of web platform features that will change the way you build apps. We’ll look at Polymer – a library … <a href="http://addyosmani.com/blog/yo-polymer/" rel="nofollow external" class="bo">Continue reading <span>→</span></a>
    </div>
]]>
</Body>
<Summary>In the HTML5 Rocks write-up and videos for my talk “yo polymer”, I walk through Web Components – an exciting new set of web platform features that will change the way you build apps. We’ll look at...</Summary>
<Website>http://addyosmani.com/blog/yo-polymer/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40588/guest@my.umbc.edu/f91d65b94ca3cdb499b40ad7c15977ab/api/pixel</TrackingUrl>
<Tag>bower</Tag>
<Tag>chrome</Tag>
<Tag>developer</Tag>
<Tag>javascript</Tag>
<Tag>modern-javascript-development</Tag>
<Tag>polymer</Tag>
<Tag>tooling</Tag>
<Tag>web-components</Tag>
<Tag>yeoman</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>Sat, 25 Jan 2014 12:41:52 -0500</PostedAt>
<EditAt>Sat, 25 Jan 2014 12:41:52 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40587" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40587">
<Title>Bits Blog: Valley of the Blahs: How Justin Bieber&#8217;s Troubles Exposed Twitter&#8217;s Achilles&#8217; Heel</Title>
<Body>
<![CDATA[
    <div class="html-content">Twitter seems to have reached a turning point, a phase in which its contributors have stopped trying to make the service as useful as possible for the crowd, and are instead trying to distinguish themselves from one another.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F25%2Fvalley-of-the-blahs-how-justin-biebers-downfall-exposed-twitters-achilles-heel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Valley+of+the+Blahs%3A+How+Justin+Bieber%E2%80%99s+Troubles+Exposed+Twitter%E2%80%99s+Achilles%E2%80%99+Heel" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F25%2Fvalley-of-the-blahs-how-justin-biebers-downfall-exposed-twitters-achilles-heel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Valley+of+the+Blahs%3A+How+Justin+Bieber%E2%80%99s+Troubles+Exposed+Twitter%E2%80%99s+Achilles%E2%80%99+Heel" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F25%2Fvalley-of-the-blahs-how-justin-biebers-downfall-exposed-twitters-achilles-heel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Valley+of+the+Blahs%3A+How+Justin+Bieber%E2%80%99s+Troubles+Exposed+Twitter%E2%80%99s+Achilles%E2%80%99+Heel" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F25%2Fvalley-of-the-blahs-how-justin-biebers-downfall-exposed-twitters-achilles-heel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Valley+of+the+Blahs%3A+How+Justin+Bieber%E2%80%99s+Troubles+Exposed+Twitter%E2%80%99s+Achilles%E2%80%99+Heel" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fbits.blogs.nytimes.com%2F2014%2F01%2F25%2Fvalley-of-the-blahs-how-justin-biebers-downfall-exposed-twitters-achilles-heel%2F%3Fpartner%3Drss%26emc%3Drss&amp;t=Bits+Blog%3A+Valley+of+the+Blahs%3A+How+Justin+Bieber%E2%80%99s+Troubles+Exposed+Twitter%E2%80%99s+Achilles%E2%80%99+Heel" 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/186529694612/u/0/f/640387/c/34625/s/3657d1f4/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529694612/u/0/f/640387/c/34625/s/3657d1f4/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186529694612/u/0/f/640387/c/34625/s/3657d1f4/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529694612/u/0/f/640387/c/34625/s/3657d1f4/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186529694612/u/0/f/640387/c/34625/s/3657d1f4/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529694612/u/0/f/640387/c/34625/s/3657d1f4/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186529694612/u/0/f/640387/c/34625/s/3657d1f4/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529694612/u/0/f/640387/c/34625/s/3657d1f4/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Twitter seems to have reached a turning point, a phase in which its contributors have stopped trying to make the service as useful as possible for the crowd, and are instead trying to distinguish...</Summary>
<Website>http://bits.blogs.nytimes.com/2014/01/25/valley-of-the-blahs-how-justin-biebers-downfall-exposed-twitters-achilles-heel/?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40587/guest@my.umbc.edu/41d79a15f8c4e4085de0d83bd85e0b37/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>Sat, 25 Jan 2014 11:25:58 -0500</PostedAt>
<EditAt>Mon, 27 Jan 2014 13:36:05 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="40591" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40591">
<Title>A programmer's legacy</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>One of my favorite things to do is looking round churches. I’m not a religious man, but whenever I visit a new city invariably the first thing I explore are the local churches or cathedral. To me, they represent timelessness and stability. They also represent a legacy. Somewhere there’s an architect whose life work was poured into that building. And here it is, standing hundreds of years after its designer has long gone, for all to see.</p>
    
    <p>Legacy is something we programmers struggle with. It’s rarely discussed, and when it is it carries a negative connotation. Legacy code is a term that runs shivers down our spines. We rarely think of legacy in terms of making a mark. </p>
    
    <p>I think we all have an urge to mark our stamp on this world, to graffiti ‘I was here–don’t forget me’. Yet, as a programmer, where is my legacy? Practically every program I’ve ever written has either been re-written by someone else, or discarded entirely. In another decade, there will hardly be a trace of my existence at all. </p>
    
    <p>Perhaps a programmer’s only way to achieve any kind of meaningful legacy is by contributing to some lower abstraction that others build upon, like TCP or Linux. I’m beginning to think, though, that the best legacies are companies. They’re a living distillation of the original founders principles, and the best ones long outlive their creators.  </p>
    
    <hr>
    
    <p><em>The world’s oldest company was <a href="http://en.wikipedia.org/wiki/Kong%C5%8D_Gumi" rel="nofollow external" class="bo">Kongō Gumi</a>, a Japanese construction company specializing in building Buddhist temples which operated for over 1,400 years.</em></p>
    </div>
]]>
</Body>
<Summary>One of my favorite things to do is looking round churches. I’m not a religious man, but whenever I visit a new city invariably the first thing I explore are the local churches or cathedral. To me,...</Summary>
<Website>http://blog.alexmaccaw.com/a-programmers-legacy</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40591/guest@my.umbc.edu/23012e4d118ad2852b1b08198f48c20a/api/pixel</TrackingUrl>
<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>Sat, 25 Jan 2014 06:53:19 -0500</PostedAt>
<EditAt>Sat, 25 Jan 2014 06:53:00 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="40586" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40586">
<Title>Comics of the week #219</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://netdna.webdesignerdepot.com/uploads/2014/01/thumb.jpg" rel="nofollow external" class="bo"><img alt="thumb" src="http://netdna.webdesignerdepot.com/uploads/2014/01/thumb.jpg" width="200" height="160" style="max-width: 100%; height: auto;"></a>Every week we feature a set of comics created exclusively for WDD.</p> <p>The content revolves around web design, blogging and funny situations that we encounter in our daily lives as designers.</p> <p>These great cartoons are created by Jerry King, an award-winning cartoonist who’s one of the most published, prolific and versatile cartoonists in the world today.</p> <p>So for a few moments, take a break from your daily routine, have a laugh and enjoy these funny cartoons.</p> <p>Feel free to leave your comments and suggestions below as well as any related stories of your own…</p> <h1>Non profit for who?</h1> <p><a href="http://netdna.webdesignerdepot.com/uploads/2014/01/5.jpg" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/5.jpg" width="650" alt="Comics of the week #219" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Gotta wear shades</h1> <p><a href="http://netdna.webdesignerdepot.com/uploads/2014/01/13.jpg" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/13.jpg" width="650" alt="Comics of the week #219" style="max-width: 100%; height: auto;"></a></p> <p> </p> <h1>Better writer than the salesman</h1> <p><a href="http://netdna.webdesignerdepot.com/uploads/2014/01/14.jpg" rel="nofollow external" class="bo"><img src="http://netdna.webdesignerdepot.com/uploads/2014/01/14.jpg" width="650" alt="Comics of the week #219" style="max-width: 100%; height: auto;"></a></p> <p><em><strong>Can you relate to these situations</strong><strong>? Please share your funny stories and comments below…</strong></em></p> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/aneba-font.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Clean Sans Serif Aneba Font Family with 10 Styles – only $7!</strong></a> </td> <td> <a href="http://www.mightydeals.com/?ref=inwidget" rel="nofollow external" class="bo"><br> <img src="http://mightydeals.com/web/images/widget-logo.png" height="40" width="90" alt="Comics of the week #219" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2014/01/comics-of-the-week-219/" rel="nofollow external" class="bo">Source</a> <br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.webdesignerdepot.com%2F2014%2F01%2Fcomics-of-the-week-219%2F&amp;t=Comics+of+the+week+%23219" 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.webdesignerdepot.com%2F2014%2F01%2Fcomics-of-the-week-219%2F&amp;t=Comics+of+the+week+%23219" 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.webdesignerdepot.com%2F2014%2F01%2Fcomics-of-the-week-219%2F&amp;t=Comics+of+the+week+%23219" 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.webdesignerdepot.com%2F2014%2F01%2Fcomics-of-the-week-219%2F&amp;t=Comics+of+the+week+%23219" 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.webdesignerdepot.com%2F2014%2F01%2Fcomics-of-the-week-219%2F&amp;t=Comics+of+the+week+%23219" 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/187556892519/u/49/f/661066/c/35285/s/36559639/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187556892519/u/49/f/661066/c/35285/s/36559639/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/187556892519/u/49/f/661066/c/35285/s/36559639/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187556892519/u/49/f/661066/c/35285/s/36559639/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/187556892519/u/49/f/661066/c/35285/s/36559639/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187556892519/u/49/f/661066/c/35285/s/36559639/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/187556892519/u/49/f/661066/c/35285/s/36559639/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/187556892519/u/49/f/661066/c/35285/s/36559639/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Every week we feature a set of comics created exclusively for WDD.   The content revolves around web design, blogging and funny situations that we encounter in our daily lives as designers....</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/36559639/sc/4/l/0L0Swebdesignerdepot0N0C20A140C0A10Ccomics0Eof0Ethe0Eweek0E2190C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40586/guest@my.umbc.edu/64e1cc091cbef27582720078f1cf0f02/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>cartoons</Tag>
<Tag>comics</Tag>
<Tag>comics-for-designers</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>funny</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>humor</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>jerry-king</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoshop</Tag>
<Tag>php</Tag>
<Tag>sql</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>Sat, 25 Jan 2014 04:15:37 -0500</PostedAt>
<EditAt>Sat, 25 Jan 2014 04:15:37 -0500</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="122865" important="false" status="posted" url="https://my3.my.umbc.edu/posts/122865">
<Title>Pres. Hrabowski Emphasizes Importance of Research Investment, Economic Development, Tech Transfer</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Maryland Senate President Mike Miller and House Speaker Michael Busch held a press conference today to announce a package of bills relating to economic development initiatives. The proposed legislation would leverage public and private sector resources for higher education research endowments; create a seed fund to invest in cybersecurity and privacy companies; and strengthen ties between key state, federal and higher education institutions and neighboring communities by creating Reduced Tax Zones (called RISE zones).</p>
    <p><a href="/wp-content/uploads/2014/01/photo.jpg" rel="nofollow external" class="bo"><img alt="photo" src="/wp-content/uploads/2014/01/photo.jpg?w=300" width="300" height="225" style="max-width: 100%; height: auto;"></a>President Hrabowski spoke at the press conference (photo at right), emphasizing the importance of investment in endowed professorships and the RISE economic development zones to increase tech transfer. He joined USM Chancellor Brit Kirwan and representatives of the University of Maryland, College Park, and Johns Hopkins University in endorsing the proposed legislation.</p>
    <p>UMBC Vice President for Research Karl Steiner and bwtech@UMBC Executive Director Ellen Hemmerly also attended the event.</p>
    <p>State and national voices are increasingly articulating the need for expanded training and investment in cybersecurity. This week’s <em>U.S. News</em> includes cybersecurity in a story about hot career fields, noting that UMBC cybersecurity programs offer students essential hands-on experience.</p>
    <p><a href="http://www.abc2news.com/dpp/news/region/anne_arundel_county_/business-plan-announced-in-annapolis" rel="nofollow external" class="bo">ABC2 News</a> reported on the press conference and Dr. Hrabowski’s remarks. Public Policy Professor and Chair Donald Norris was also interviewed about the event in <em><a href="http://www.baltimoresun.com/news/maryland/politics/bs-md-assembly-leaders-20140124,0,2853826.story" rel="nofollow external" class="bo">The Baltimore Sun</a>.</em></p>
    </div>
]]>
</Body>
<Summary>Maryland Senate President Mike Miller and House Speaker Michael Busch held a press conference today to announce a package of bills relating to economic development initiatives. The proposed...</Summary>
<Website>https://umbc.edu/stories/dr-hrabowski-endorses-proposed-legislation/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/122865/guest@my.umbc.edu/8f01cc2e774534dff9cefccda9ca10b7/api/pixel</TrackingUrl>
<Tag>bwtech</Tag>
<Tag>community</Tag>
<Tag>cybersecurity</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>Fri, 24 Jan 2014 21:28:11 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40596" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40596">
<Title>On Children&#8217;s Website, N.S.A. Puts a Furry, Smiley Face on Its Mission</Title>
<Body>
<![CDATA[
    <div class="html-content">The National Security Agency uses cartoon characters to try to teach young people about its work, and to encourage them to someday join the agency.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Fus%2Fon-childrens-website-nsa-puts-a-furry-smiley-face-on-its-mission.html%3Fpartner%3Drss%26emc%3Drss&amp;t=On+Children%E2%80%99s+Website%2C+N.S.A.+Puts+a+Furry%2C+Smiley+Face+on+Its+Mission" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Fus%2Fon-childrens-website-nsa-puts-a-furry-smiley-face-on-its-mission.html%3Fpartner%3Drss%26emc%3Drss&amp;t=On+Children%E2%80%99s+Website%2C+N.S.A.+Puts+a+Furry%2C+Smiley+Face+on+Its+Mission" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Fus%2Fon-childrens-website-nsa-puts-a-furry-smiley-face-on-its-mission.html%3Fpartner%3Drss%26emc%3Drss&amp;t=On+Children%E2%80%99s+Website%2C+N.S.A.+Puts+a+Furry%2C+Smiley+Face+on+Its+Mission" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Fus%2Fon-childrens-website-nsa-puts-a-furry-smiley-face-on-its-mission.html%3Fpartner%3Drss%26emc%3Drss&amp;t=On+Children%E2%80%99s+Website%2C+N.S.A.+Puts+a+Furry%2C+Smiley+Face+on+Its+Mission" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Fus%2Fon-childrens-website-nsa-puts-a-furry-smiley-face-on-its-mission.html%3Fpartner%3Drss%26emc%3Drss&amp;t=On+Children%E2%80%99s+Website%2C+N.S.A.+Puts+a+Furry%2C+Smiley+Face+on+Its+Mission" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/email.png" style="max-width: 100%; height: auto;"></a>
    </td></tr></tbody></table></div>
    </div>
]]>
</Body>
<Summary>The National Security Agency uses cartoon characters to try to teach young people about its work, and to encourage them to someday join the agency.      </Summary>
<Website>http://www.nytimes.com/2014/01/25/us/on-childrens-website-nsa-puts-a-furry-smiley-face-on-its-mission.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40596/guest@my.umbc.edu/f4a03b037a5633cd2d3346ad289bfe89/api/pixel</TrackingUrl>
<Tag>children-and-childhood</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>mcdonalds-corporation-mcd-nyse</Tag>
<Tag>national-security-agency</Tag>
<Tag>new</Tag>
<Tag>snowden-edward-j</Tag>
<Tag>surveillance-of-citizens-by-government</Tag>
<Tag>technology</Tag>
<Tag>united-states-defense-and-military-forces</Tag>
<Tag>york</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 24 Jan 2014 21:01:01 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40585" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40585">
<Title>Business Briefing | Company News: Dell&#8217;s Financial Chief Steps Down</Title>
<Body>
<![CDATA[
    <div class="html-content">Brian T. Gladden’s announcement comes about three months after a buyout was completed to take the company private.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Ftechnology%2Fdells-financial-chief-steps-down.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Business+Briefing+%7C+Company+News%3A+Dell%E2%80%99s+Financial+Chief+Steps+Down" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/twitter.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/facebook/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Ftechnology%2Fdells-financial-chief-steps-down.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Business+Briefing+%7C+Company+News%3A+Dell%E2%80%99s+Financial+Chief+Steps+Down" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/facebook.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/linkedin/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Ftechnology%2Fdells-financial-chief-steps-down.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Business+Briefing+%7C+Company+News%3A+Dell%E2%80%99s+Financial+Chief+Steps+Down" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/linkedin.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/gplus/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Ftechnology%2Fdells-financial-chief-steps-down.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Business+Briefing+%7C+Company+News%3A+Dell%E2%80%99s+Financial+Chief+Steps+Down" rel="nofollow external" class="bo"><img src="http://res3.feedsportal.com/social/googleplus.png" style="max-width: 100%; height: auto;"></a> <a href="http://share.feedsportal.com/share/email/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F01%2F25%2Ftechnology%2Fdells-financial-chief-steps-down.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Business+Briefing+%7C+Company+News%3A+Dell%E2%80%99s+Financial+Chief+Steps+Down" 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/186529665347/u/0/f/640387/c/34625/s/3653fea9/sc/15/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529665347/u/0/f/640387/c/34625/s/3653fea9/sc/15/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186529665347/u/0/f/640387/c/34625/s/3653fea9/sc/15/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529665347/u/0/f/640387/c/34625/s/3653fea9/sc/15/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/186529665347/u/0/f/640387/c/34625/s/3653fea9/sc/15/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529665347/u/0/f/640387/c/34625/s/3653fea9/sc/15/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/186529665347/u/0/f/640387/c/34625/s/3653fea9/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/186529665347/u/0/f/640387/c/34625/s/3653fea9/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Brian T. Gladden’s announcement comes about three months after a buyout was completed to take the company private.      </Summary>
<Website>http://www.nytimes.com/2014/01/25/technology/dells-financial-chief-steps-down.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40585/guest@my.umbc.edu/324dfee7614632efca50d9c1d667bacc/api/pixel</TrackingUrl>
<Tag>appointments-and-executive-changes</Tag>
<Tag>dell-inc-dell-nasdaq</Tag>
<Tag>gladden-brian-t</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>Fri, 24 Jan 2014 20:23:32 -0500</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="40584" important="false" status="posted" url="https://my3.my.umbc.edu/posts/40584">
<Title>Don&#8217;t stop working on the dissertation until you&#8217;re finished, and learn from &#8220;Painful People&#8221;</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><a href="http://dissertationhouse.files.wordpress.com/2014/01/doctorate2.jpg" rel="nofollow external" class="bo"><img alt="Doctor of Philosophy Degree" src="http://dissertationhouse.files.wordpress.com/2014/01/doctorate2.jpg?w=640" style="max-width: 100%; height: auto;"></a>The following message was posted as part of the Dissertation House’s blog within the <a href="http://dissertationhouse.wordpress.com/blog-online-challenge/winter-2014/" rel="nofollow external" class="bo">“Winter 2014 Challenge” thread</a>.  It is repeated here so that those who read the general blog, will receive the message as well. At the time of the original post, there were 112 messages. Now, there are 134. Good job “DHers!”</p>
    <p>The Winter 2014 Challenge thread is here: <a href="http://dissertationhouse.wordpress.com/blog-online-challenge/winter-2014/" rel="nofollow external" class="bo">http://dissertationhouse.wordpress.com/blog-online-challenge/winter-2014/</a>. Feel free to join. The thread will be active until the end of June 2014.</p>
    <p>————————————————————————-</p>
    <p>January 23, 2014</p>
    <p>Buenos tardes a todos!!/Good afternoon to everyone!!</p>
    <p>Estoy en Ecuador y estoy muy feliz porque hay 112 mesajes aqui!/I am in Ecuador and am very happy because there are 112 messages here!</p>
    <p>Congratulations to all of you on your persistence! What does your persistence mean? If you blogged in during the snow storm, you have already proven that you have what it takes. You have drive and determination. That is a large part of the battle. The Dissertation House exists to assist you with navigating the process and adding “knowledge of the process” to your enthusiasm.</p>
    <p>My message for you today is simple:</p>
    <p><strong>1) Don’t stop until you’re done!</strong><br>
    <a href="http://dissertationhouse.wordpress.com/coaching-and-mentoring/dr-wendy-carter/" rel="nofollow external" class="bo">Dr. Carter-Veale</a>, Dr. Cortes, and some of you have seen people in the DH who felt frustrated, tired, and upset, BUT … they finished. They defended, handed in their dissertations, and walked across the stage with the big robe and the thick bars on their arms. That will be you … soon.</p>
    <p><strong>2) Pay close attention to the tips that you will receive in the DH.</strong><br>
    These are tried and tested methods. With a pure heart, I ask you to “just do it.”</p>
    <p><strong>3) As much as possible, stay in close contact with your advisor.</strong><br>
    Your advisor needs to know that you are working.You also want to be sure that you are on the right page and that the expectations are in sync.</p>
    <p><strong>4) Utilize the community that is being established in the DH. It helps!</strong><br>
    Working on the dissertation does not have to be a lonely, isolated process. You are now surrounded by a community of scholars with like minds and goals. There’s energy there. Feed on it. Use it. Bask in it!</p>
    <p><strong>5) Embrace the process.</strong><br>
    This is the hard one. The process is difficult, but there are parts of the process that are worth the frustration. The dissertation process teaches you how to deal with long-term projects, how to deal with contrasting personalities (e.g., your committee), how to deal with rejection, and how to handle your own emotions. This is a maturation process. You may not know all of the answers, but you learn how to investigate solutions, and you learn to think through options. You may not like all of the people with whom you’re working, but you learn how to negotiate for what you need, and you learn to appreciate the strengths that people bring to the table, regardless of whether or not you care for them personally. <span><em>You can still learn from “Painful People.” You can still learn from people, even when they aren’t providing information or assistance in a way that is amiable or projecting a feeling of giving. Take what they provide and find its worth.</em></span> Above all, learn to appreciate the process of becoming more adept in your field.</p>
    <p>Overall, I’m sorry that I’m not there in person for this session, but feel free to make an appointment with me to talk when I return to UMBC in February. Good luck to all of you! Congratulations on your hard work and keep it up. Those letters … “P,” “h,” and “D,” are dangling, hanging around, waiting for you to finish so that they can accompany your name!</p>
    <p>Best regards,<br>
    <em><a href="http://dissertationhouse.wordpress.com/coaching-and-mentoring/dr-renetta-tull/" rel="nofollow external" class="bo">Renetta Tull</a></em></p>
    <p>————————————————————————————–</p>
    <p><em>The Dissertation House is a program of <a href="http://promiseagep.wordpress.com" rel="nofollow external" class="bo">PROMISE: Maryland’s AGEP</a></em></p>
    <p><em><a href="http://dissertationhouse.wordpress.com/coaching-and-mentoring/dr-wendy-carter/" rel="nofollow external" class="bo">Dr. Wendy Carter-Veale</a></em> is the “Head Coach” for the Dissertation House.</p>
    <br>Filed under: <a href="http://dissertationhouse.wordpress.com/category/dissertation-completion/" rel="nofollow external" class="bo">Dissertation Completion</a>, <a href="http://dissertationhouse.wordpress.com/category/dissertation-house/" rel="nofollow external" class="bo">Dissertation House</a>, <a href="http://dissertationhouse.wordpress.com/category/promise-marylands-agep/" rel="nofollow external" class="bo">PROMISE: Maryland's AGEP</a>, <a href="http://dissertationhouse.wordpress.com/category/umbc/" rel="nofollow external" class="bo">UMBC</a>, <a href="http://dissertationhouse.wordpress.com/category/winter-dissertation-house/" rel="nofollow external" class="bo">Winter Dissertation House</a> Tagged: <a href="http://dissertationhouse.wordpress.com/tag/agep/" rel="nofollow external" class="bo">AGEP</a>, <a href="http://dissertationhouse.wordpress.com/tag/agep-t/" rel="nofollow external" class="bo">AGEP-T</a>, <a href="http://dissertationhouse.wordpress.com/tag/dh/" rel="nofollow external" class="bo">DH</a>, <a href="http://dissertationhouse.wordpress.com/tag/dissertation-house/" rel="nofollow external" class="bo">Dissertation House</a>, <a href="http://dissertationhouse.wordpress.com/tag/promise-agep/" rel="nofollow external" class="bo">PROMISE AGEP</a>, <a href="http://dissertationhouse.wordpress.com/tag/promise-marylands-agep/" rel="nofollow external" class="bo">PROMISE: Maryland's AGEP</a>, <a href="http://dissertationhouse.wordpress.com/tag/umbc/" rel="nofollow external" class="bo">UMBC</a>  </div>
]]>
</Body>
<Summary>The following message was posted as part of the Dissertation House’s blog within the “Winter 2014 Challenge” thread.  It is repeated here so that those who read the general blog, will receive the...</Summary>
<Website>http://dissertationhouse.wordpress.com/2014/01/24/dont-stop-working-on-the-dissertation-until-youre-finished-and-learn-from-painful-people/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/40584/guest@my.umbc.edu/b2dda8c732a85df8cbbc92d79b71618c/api/pixel</TrackingUrl>
<Tag>agep</Tag>
<Tag>agep-t</Tag>
<Tag>dh</Tag>
<Tag>dissertation-completion</Tag>
<Tag>dissertation-house</Tag>
<Tag>promise-agep</Tag>
<Tag>promise-marylands-agep</Tag>
<Tag>umbc</Tag>
<Tag>winter-dissertation-house</Tag>
<Group token="gspd">Grad Student &amp;amp; Postdoc Development </Group>
<GroupUrl>https://my3.my.umbc.edu/groups/gspd</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/original.png?1781730740</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xlarge.png?1781730740</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/large.png?1781730740</AvatarUrl>
<AvatarUrl size="medium">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/medium.png?1781730740</AvatarUrl>
<AvatarUrl size="small">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/small.png?1781730740</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xsmall.png?1781730740</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/066/4b2a0ea3017d894b96de7bd4a45729d5/xxsmall.png?1781730740</AvatarUrl>
<Sponsor>PROMISE @ UMBC: Support for Graduate Students</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 24 Jan 2014 18:53:46 -0500</PostedAt>
<EditAt>Fri, 24 Jan 2014 18:53:46 -0500</EditAt>
</NewsItem>

</News>
