<?xml version="1.0"?>
<News hasArchived="true" page="7670" pageCount="10793" pageSize="10" timestamp="Sun, 06 Sep 2026 01:26:54 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=7670&amp;range=30">
<NewsItem contentIssues="true" id="43048" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43048">
<Title>Tips for Writing Better Code</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>What is good code?</p>
    <p>We know when we spot bad code. But because good programming is harder to define, it’s difficult to know you’ve actually created quality.</p>
    <p>In my experience, there are two great questions that can indicate code quality:</p>
    <ul>
    <li>When you’re working on a team, do others easily understand your code’s logic?</li>
    <li>When changes are required, is it a quick and straightforward process?</li>
    </ul>
    <p>If it’s difficult to explain code to others or if lots of things break when making changes, then chances are the code is bad. Fixing these problems often involves finding sensitive solutions in the context of a particular environment. For example, perhaps it’s a matter of using an established design pattern, or writing unit tests.</p>
    <p>While it’s important to fix code directly, it’s equally important to address the conditions that lead to bad code in the first place. Every time I’ve encountered poor programming on a project I’m working on, it has typically stemmed from the same chronic issues.</p>
    <h2>Don’t optimize code too soon</h2>
    <p>When I first started programming, I remember marveling at my own “brilliance” when I was able to condense several lines of code into a single line. I would remove all the spaces and comments I made, nest multiple function calls instead of using clearly marked variables, and so on. I would also look for any type of optimization I could find, no matter how small.</p>
    <div>
    <img alt="Photograph of a car engine." src="http://blog.teamtreehouse.com/wp-content/uploads/2014/03/5218105507_2339c24f04_b.jpg" width="1024" height="680" style="max-width: 100%; height: auto;"><p>Like building an engine, fine-tuning every last detail of your code will only make you feel like a genius temporarily, and usually the increased performance is marginal. (Photo from Flickr user <a href="http://www.flickr.com/photos/profilerehab/5218105507/" rel="nofollow external" class="bo">Andrew Taylor</a>.)</p>
    </div>
    <p>Writing clear code is more important that writing clever code. I once learned this when I had to go back and modify one of my own projects after letting it sit for six months. By that point, I had to spend a lot of time just figuring out what I wrote before I could make the necessary change. Suddenly, I didn’t feel so clever.</p>
    <h2>Never hack a framework</h2>
    <p>All developers encounter high-pressure deadlines from time to time. Maybe you’re preparing the latest version of a project for client review or for a public demo. The clock is ticking and there’s code to deliver, so you start taking shortcuts. Sometimes these are necessary and can indeed be refactored later, as long it’s done “the right way” soon after.</p>
    <p>However, hacking a framework like Bootstrap or jQuery is never a shortcut. Sure, it might help get something delivered quickly, but ultimately these end up being expensive to fix. In the worst-case scenarios, the client might be promised functionality that’s only possible by making changes to framework files rather than properly building proper code. Those unusual hacks must to be maintained going forward.</p>
    <h2><span>Refactor every so often</span></h2>
    <p>Speaking of shortcuts, it’s a good idea to collect all those quick-and-dirty hacks into one place using a <a href="http://csswizardry.com/2013/04/shame-css/" rel="nofollow external" class="bo">shame.css</a> file. (The same idea can be applied to non-web projects.) Then when the high-pressure delivery date has lapsed, it’s easy to erase all the “shame” and rewrite the code properly. Even when I’m not making quick hacks, I still try to allow myself time to review, reflect, and refactor. For example, when you revisit some of the first code you wrote, is it still easy to understand? As a project grows, this becomes increasingly important.</p>
    <p>I also recommend doing this in the morning or after the weekend. The passage of time always provides a fresh perspective, and it’s a good way to get back into a workflow.</p>
    <h2>U<span>se revision control for your code</span>
    </h2>
    <p>If you’re not using revision control, you should start today. <a href="https://github.com/" rel="nofollow external" class="bo">Github</a> is free and reasonably priced if your needs grow. Coding without revision control is like driving without a seatbelt. Everything will be fine for a while, but as soon as something goes wrong, the consequences can be dire.</p>
    <p>I’ve worked on several projects that involved “cowboy coding” with total disregard for simple precautions, and in every case, a revision control system could have made work move a lot faster. If you need to learn how to use a revision control system like git, <a href="http://teamtreehouse.com/library/git-basics" rel="nofollow external" class="bo">check out the Git Basics course on Treehouse</a>. Here’s the trailer:</p>
    <p></p>
    <div class="embed-container"><iframe src="//www.youtube.com/embed/0WPXzOdhuto?rel=0" frameborder="0" webkitallowfullscreen="webkitAllowFullScreen" mozallowfullscreen="mozallowfullscreen" allowfullscreen="allowFullScreen">[Video]</iframe></div>
    <h2>Allow time for learning</h2>
    <p>When you’re crunching between one deadline and the next, learning can feel like a luxury. A programmer who isn’t learning, however, is just treading water. Almost every time I learn something new, it helps me work faster and more efficiently. This can immediately elevate quality of life if it means career advancement or more leisure time. What always amazes me is the ratio between the time it takes to learn something new versus the time that it ultimately saves. Try to learn something every day and, over time, you’ll reach a new level of understanding.</p>
    <p>If you have more tips you’d like to share, I’d love to hear them in the comments!</p>
    <p>The post <a href="http://blog.teamtreehouse.com/tips-for-writing-better-code" rel="nofollow external" class="bo">Tips for Writing Better Code</a> appeared first on <a href="http://blog.teamtreehouse.com" rel="nofollow external" class="bo">Treehouse Blog</a>.</p>
    </div>
]]>
</Body>
<Summary>What is good code?   We know when we spot bad code. But because good programming is harder to define, it’s difficult to know you’ve actually created quality.   In my experience, there are two...</Summary>
<Website>http://feedproxy.google.com/~r/teamtreehouse/~3/9CcV_AU7LzI/tips-for-writing-better-code</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43048/guest@my.umbc.edu/068ffd62f067ae7c86b6819f7dbad591/api/pixel</TrackingUrl>
<Tag>android</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>html</Tag>
<Tag>ios</Tag>
<Tag>javascript</Tag>
<Tag>learn-to-code</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>Mon, 31 Mar 2014 18:14:10 -0400</PostedAt>
<EditAt>Mon, 31 Mar 2014 18:14:10 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="43243" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43243">
<Title>Study Shows Flawed U.S. Encryption Standard Could Be Broken in Seconds</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>If the NSA did have the keys to the backdoor in a random number generator it could break some encryption without trouble.</p>
    <p>The security of a data connection protected using a flawed U.S. encryption standard promoted by the National Security Agency could be broken in under 16 seconds using a single computer processor. That’s according to the first <a href="http://dualec.org/" rel="nofollow external" class="bo">in-depth study</a> of how easily encryption systems that use the now deprecated Dual_EC random number generator could be defeated by an attacker that had “backdoored” the standard.</p>
    </div>
]]>
</Body>
<Summary>If the NSA did have the keys to the backdoor in a random number generator it could break some encryption without trouble.  The security of a data connection protected using a flawed U.S....</Summary>
<Website>http://www.technologyreview.com/view/526046/study-shows-flawed-us-encryption-standard-could-be-broken-in-seconds/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43243/guest@my.umbc.edu/93a84c243fbcf9b9ff2020cf78949905/api/pixel</TrackingUrl>
<Tag>development</Tag>
<Tag>internet</Tag>
<Tag>mit</Tag>
<Tag>technology</Tag>
<Tag>web</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 31 Mar 2014 17:28:14 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="43045" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43045">
<Title>NEW! Full-Time and Part-Time Postings for CNMS Students</Title>
<Body>
<![CDATA[
    <div class="html-content">During the last week, multiple full-time and part-time positions have been posted to UMBCworks. Check out these key positions today!<br><br>USDA – Agricultural Research Service<br>Multiple Postings<br>UMBCworks ID – 9250288<br>Application Deadline: 5/23/14<br><br>Maryland Spectral Services, Inc.<br>Laboratory Technician<br>UMBCworks ID – 9264489<br>Application Deadline: 4/30/14<br><br>TechUSA<br>Manufacturing Associate/Lab Technician<br>UMBCworks ID – 9264687<br>Application Deadline: 6/30/14<br><br>CareFirst BlueCross BlueSheild<br>Medicare/Geriatric Case Manager II<br>UMBCworks ID – 9264925<br>Application Deadline – 3/31/14<br><br>UMBC Campus<br>Physics Tutor (Part-time)<br>UMBCworks ID – 9264919<br>Application Deadline: 5/3014<br><br>Ramapo for Children<br>RN, LPN, Nursing Students (Temporary/Seasonal)<br>UMBCworks ID: 9264743<br>Application Deadline: 6/1/14<br><br>Life Search Technologies<br>Talent Acquisition Specialist/Recruiter<br>UMBCworks ID – 9261939<br>Application Deadline – 4/18/14<br><br><br>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>Please note you MUST have an approved resume to apply to positions. To schedule an appoint access our online system in UMBCworks or call 410-455-2216. <br><br>
    </div>
]]>
</Body>
<Summary>During the last week, multiple full-time and part-time positions have been posted to UMBCworks. Check out these key positions today!  USDA – Agricultural Research Service Multiple Postings...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43045/guest@my.umbc.edu/d401bbeb6a924f3f9e44bf20c86f9cfa/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>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 31 Mar 2014 17:00:54 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="43044" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43044">
<Title>NEW! Internship &amp; Research Positions for CNMS Students</Title>
<Body>
<![CDATA[
    <div class="html-content">During the last week, multiple internship positions have been posted to UMBCworks. Check out these new positions today!<br><br>Deborah Wilson, DDS, PA<br>Paid Dental Assistant/Receptionist Intern<br>UMBCworks ID: 9260279<br>Application Deadline: 6/30/14<br><br>Goucher College<br>Health Educator Intern<br>UMBCworks ID: 9261401<br>Application Deadline: 6/30/14<br><br>General Dynamics Information Technology<br>Healthcare Policy Research Intern<br>UMBCworks ID: 9261424<br>Application Deadline: 6/30/14<br><br>Casey Cares Foundation<br>Intern working with critically ill children and their families<br>UMBCworks ID: 9249991<br>Application Deadline: 6/30/14<br><br>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>Please note you MUST have an approved resume and be released to apply to internships. To schedule an appointment, access our online system in UMBCworks or call 410-455-2216. <br><br>
    </div>
]]>
</Body>
<Summary>During the last week, multiple internship positions have been posted to UMBCworks. Check out these new positions today!  Deborah Wilson, DDS, PA Paid Dental Assistant/Receptionist Intern UMBCworks...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43044/guest@my.umbc.edu/c3b6d56bac016e562eb3206965690038/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>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 31 Mar 2014 16:37:04 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43046" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43046">
<Title>Justices Seem Wary of Software Patent Case</Title>
<Body>
<![CDATA[
    <div class="html-content">A case over patents to mitigate risks among multiple parties in a transaction has been seen as an indicator of how abstract technical ideas can be to become eligible for patent protection.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F04%2F01%2Fbusiness%2Fsupreme-court-seems-wary-of-a-software-patent-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Justices+Seem+Wary+of+Software+Patent+Case" 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%2F04%2F01%2Fbusiness%2Fsupreme-court-seems-wary-of-a-software-patent-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Justices+Seem+Wary+of+Software+Patent+Case" 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%2F04%2F01%2Fbusiness%2Fsupreme-court-seems-wary-of-a-software-patent-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Justices+Seem+Wary+of+Software+Patent+Case" 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%2F04%2F01%2Fbusiness%2Fsupreme-court-seems-wary-of-a-software-patent-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Justices+Seem+Wary+of+Software+Patent+Case" 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%2F04%2F01%2Fbusiness%2Fsupreme-court-seems-wary-of-a-software-patent-case.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Justices+Seem+Wary+of+Software+Patent+Case" 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/193360695563/u/0/f/640387/c/34625/s/38d3e66c/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193360695563/u/0/f/640387/c/34625/s/38d3e66c/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193360695563/u/0/f/640387/c/34625/s/38d3e66c/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193360695563/u/0/f/640387/c/34625/s/38d3e66c/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193360695563/u/0/f/640387/c/34625/s/38d3e66c/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193360695563/u/0/f/640387/c/34625/s/38d3e66c/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/193360695563/u/0/f/640387/c/34625/s/38d3e66c/sc/21/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193360695563/u/0/f/640387/c/34625/s/38d3e66c/sc/21/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>A case over patents to mitigate risks among multiple parties in a transaction has been seen as an indicator of how abstract technical ideas can be to become eligible for patent protection.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38d3e66c/sc/21/l/0L0Snytimes0N0C20A140C0A40C0A10Cbusiness0Csupreme0Ecourt0Eseems0Ewary0Eof0Ea0Esoftware0Epatent0Ecase0Bhtml0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43046/guest@my.umbc.edu/911c8e3afc59207786616957c4f42467/api/pixel</TrackingUrl>
<Tag>alice-corp-pty-ltd</Tag>
<Tag>cls-group-holdings-ag</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>international-business-machines-corporation-ibm-nyse</Tag>
<Tag>inventions-and-patents</Tag>
<Tag>new</Tag>
<Tag>supreme-court-us</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>Mon, 31 Mar 2014 16:10:04 -0400</PostedAt>
<EditAt>Mon, 31 Mar 2014 20:44:10 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="43042" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43042">
<Title>Dr. Karpel awarded Fulbright-Brazil Distinguished Chair</Title>
<Body>
<![CDATA[
    <div class="html-content">Dr. Rich Karpel has been awarded a Fulbright-Brazil Scientific Mobility Program Distinguished Chair.  This is a research/teaching award, 4 months total, and he will be researching
     and teaching in Sao Paulo ([our] summer of 2014 and 2015).  The research project involves biochemical, biophysical, and cell biological studies on crotamine, a snake venom-derived protein that could have useful applications as a drug-delivery vehicle. <br><br>Congratulations Rich!<br>
    </div>
]]>
</Body>
<Summary>Dr. Rich Karpel has been awarded a Fulbright-Brazil Scientific Mobility Program Distinguished Chair.  This is a research/teaching award, 4 months total, and he will be researching  and teaching in...</Summary>
<Website>http://catalog.cies.org/2014/viewAward.aspx?n=4458</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43042/guest@my.umbc.edu/726a12b27a9d24f8a55c8919964baba2/api/pixel</TrackingUrl>
<Group token="chem">Department of Chemistry &amp;amp; Biochemistry</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/chem</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xsmall.png?1397743638</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/original.jpg?1397743638</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xxlarge.png?1397743638</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xlarge.png?1397743638</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/large.png?1397743638</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/medium.png?1397743638</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/small.png?1397743638</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xsmall.png?1397743638</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xxsmall.png?1397743638</AvatarUrl>
<Sponsor>Department of Chemistry &amp; Biochemistry</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 31 Mar 2014 15:10:03 -0400</PostedAt>
<EditAt>Mon, 31 Mar 2014 15:11:32 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="43041" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43041">
<Title>Quadmania on the Rift League of Legends Tournament</Title>
<Tagline>Compete or spectate for free and win prizes April 26</Tagline>
<Body>
<![CDATA[
    <div class="html-content"><div>
    			<p><a href="https://www.facebook.com/UMBCeCOG" rel="nofollow external" class="bo">UMBC e-Sports Competitive Online Gaming Club</a> presents Quadmania on the Rift April 26 at UMBC Bookstore.  Compete or spectate for free and win prizes!</p>
    <p><img src="http://umbcbookstore.files.wordpress.com/2014/03/egamesquadonrift.jpg?w=584&amp;h=327" alt="" style="max-width: 100%; height: auto;"></p>
    </div></div>
]]>
</Body>
<Summary>UMBC e-Sports Competitive Online Gaming Club presents Quadmania on the Rift April 26 at UMBC Bookstore.  Compete or spectate for free and win prizes!</Summary>
<Website>https://www.facebook.com/UMBCeCOG</Website>
<AttachmentKind>Image</AttachmentKind>
<AttachmentUrl>https://assets2-my.umbc.edu/system/shared/attachments/94e989428e954047a04ca410a0ef86d0/6a9cf99e/news/000/043/041/fa2274da762c785b62434386a4e80f6d/egamesquadonrift.jpg?1396292515</AttachmentUrl>
<Attachments>
<Attachment kind="Image" url="https://my3.my.umbc.edu/posts/43041/attachments/13024"></Attachment>
</Attachments>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43041/guest@my.umbc.edu/adc563f6fdbc03ed71c1830b5a4ed8dd/api/pixel</TrackingUrl>
<Tag>bookstore</Tag>
<Tag>fun</Tag>
<Tag>games</Tag>
<Tag>quadmania</Tag>
<Group token="bookstore">Bookstore</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/bookstore</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/xsmall.png?1282440796</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/original.png?1282440796</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/xxlarge.png?1282440796</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/xlarge.png?1282440796</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/large.png?1282440796</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/medium.png?1282440796</AvatarUrl>
<AvatarUrl size="small">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/small.png?1282440796</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/xsmall.png?1282440796</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/032/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/xxsmall.png?1282440796</AvatarUrl>
<Sponsor>Bookstore</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/041/638c5071774c3ddd8b600c3fe1b13789/xxlarge.jpg?1396291961</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/043/041/638c5071774c3ddd8b600c3fe1b13789/xlarge.jpg?1396291961</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/041/638c5071774c3ddd8b600c3fe1b13789/large.jpg?1396291961</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/041/638c5071774c3ddd8b600c3fe1b13789/medium.jpg?1396291961</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/041/638c5071774c3ddd8b600c3fe1b13789/small.jpg?1396291961</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/041/638c5071774c3ddd8b600c3fe1b13789/xsmall.jpg?1396291961</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/043/041/638c5071774c3ddd8b600c3fe1b13789/xxsmall.jpg?1396291961</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 31 Mar 2014 15:04:42 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="43040" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43040">
<Title>F.C.C. to Free Airwaves for Wi-Fi and Wireless Broadband</Title>
<Body>
<![CDATA[
    <div class="html-content">The commission is trying to ease the congestion that leads to dropped calls and slow loading of online material. It also acted to help curb the cost of cable television service.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2014%2F04%2F01%2Fbusiness%2Ffcc-votes-to-clear-more-airwaves-for-wireless-data.html%3Fpartner%3Drss%26emc%3Drss&amp;t=F.C.C.+to+Free+Airwaves+for+Wi-Fi+and+Wireless+Broadband" 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%2F04%2F01%2Fbusiness%2Ffcc-votes-to-clear-more-airwaves-for-wireless-data.html%3Fpartner%3Drss%26emc%3Drss&amp;t=F.C.C.+to+Free+Airwaves+for+Wi-Fi+and+Wireless+Broadband" 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%2F04%2F01%2Fbusiness%2Ffcc-votes-to-clear-more-airwaves-for-wireless-data.html%3Fpartner%3Drss%26emc%3Drss&amp;t=F.C.C.+to+Free+Airwaves+for+Wi-Fi+and+Wireless+Broadband" 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%2F04%2F01%2Fbusiness%2Ffcc-votes-to-clear-more-airwaves-for-wireless-data.html%3Fpartner%3Drss%26emc%3Drss&amp;t=F.C.C.+to+Free+Airwaves+for+Wi-Fi+and+Wireless+Broadband" 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%2F04%2F01%2Fbusiness%2Ffcc-votes-to-clear-more-airwaves-for-wireless-data.html%3Fpartner%3Drss%26emc%3Drss&amp;t=F.C.C.+to+Free+Airwaves+for+Wi-Fi+and+Wireless+Broadband" 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/193359910889/u/0/f/640387/c/34625/s/38d375a6/sc/1/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359910889/u/0/f/640387/c/34625/s/38d375a6/sc/1/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193359910889/u/0/f/640387/c/34625/s/38d375a6/sc/1/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359910889/u/0/f/640387/c/34625/s/38d375a6/sc/1/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/193359910889/u/0/f/640387/c/34625/s/38d375a6/sc/1/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359910889/u/0/f/640387/c/34625/s/38d375a6/sc/1/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/193359910889/u/0/f/640387/c/34625/s/38d375a6/sc/1/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/193359910889/u/0/f/640387/c/34625/s/38d375a6/sc/1/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>The commission is trying to ease the congestion that leads to dropped calls and slow loading of online material. It also acted to help curb the cost of cable television service.      </Summary>
<Website>http://rss.nytimes.com/c/34625/f/640387/s/38d375a6/sc/1/l/0L0Snytimes0N0C20A140C0A40C0A10Cbusiness0Cfcc0Evotes0Eto0Eclear0Emore0Eairwaves0Efor0Ewireless0Edata0Bhtml0Dpartner0Frss0Gemc0Frss/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43040/guest@my.umbc.edu/9fcb7f1214241dfeeec1cc4ca3688bee/api/pixel</TrackingUrl>
<Tag>cable-television</Tag>
<Tag>cisco-systems-inc-csco-nasdaq</Tag>
<Tag>federal-communications-commission</Tag>
<Tag>new</Tag>
<Tag>radio-spectrum</Tag>
<Tag>regulation-and-deregulation-of-industry</Tag>
<Tag>technology</Tag>
<Tag>wireless-communications</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>Mon, 31 Mar 2014 14:21:14 -0400</PostedAt>
<EditAt>Mon, 31 Mar 2014 19:20:08 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="43039" important="false" status="posted" url="https://my3.my.umbc.edu/posts/43039">
<Title>International Interns join the Department</Title>
<Body>
<![CDATA[
    <div class="html-content">Please welcome our new international interns Solene Avrillaud, Lorna Bergeon, and 
    Pierre Chabernaud. They will conduct research in the department for the next three months. Solene will be hosted in the Lab of the Chairman, Zeev Rosenzweig,  Lorna with Dr. Marie-Christine Onuta, and Pierre with Dr. Brian Cullum.
    <div> <br>This is the second year of the program in cooperation with the <span> Université de Poitiers of Portiers, France. Let's all give them a warm welcome.<br></span><h3><span><br></span></h3>
    </div>
    </div>
]]>
</Body>
<Summary>Please welcome our new international interns Solene Avrillaud, Lorna Bergeon, and  Pierre Chabernaud. They will conduct research in the department for the next three months. Solene will be hosted...</Summary>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/43039/guest@my.umbc.edu/e438559cd4be5b8d74c4bfbc8558e802/api/pixel</TrackingUrl>
<Group token="chem">Department of Chemistry &amp;amp; Biochemistry</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/chem</GroupUrl>
<AvatarUrl>https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xsmall.png?1397743638</AvatarUrl>
<AvatarUrl size="original">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/original.jpg?1397743638</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xxlarge.png?1397743638</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xlarge.png?1397743638</AvatarUrl>
<AvatarUrl size="large">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/large.png?1397743638</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/medium.png?1397743638</AvatarUrl>
<AvatarUrl size="small">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/small.png?1397743638</AvatarUrl>
<AvatarUrl size="xsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xsmall.png?1397743638</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/676/b0d3e132c23529b08ae2b24fba1f86f5/xxsmall.png?1397743638</AvatarUrl>
<Sponsor>Department of Chemistry &amp; Biochemistry</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/039/81182f336f1fdfa1544cf54d2718efaa/xxlarge.jpg?1396286362</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/043/039/81182f336f1fdfa1544cf54d2718efaa/xlarge.jpg?1396286362</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/039/81182f336f1fdfa1544cf54d2718efaa/large.jpg?1396286362</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets3-my.umbc.edu/system/shared/thumbnails/news/000/043/039/81182f336f1fdfa1544cf54d2718efaa/medium.jpg?1396286362</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/043/039/81182f336f1fdfa1544cf54d2718efaa/small.jpg?1396286362</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/039/81182f336f1fdfa1544cf54d2718efaa/xsmall.jpg?1396286362</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/043/039/81182f336f1fdfa1544cf54d2718efaa/xxsmall.jpg?1396286362</ThumbnailUrl>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Mon, 31 Mar 2014 13:19:40 -0400</PostedAt>
<EditAt>Fri, 04 Apr 2014 15:16:51 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="122713" important="false" status="posted" url="https://my3.my.umbc.edu/posts/122713">
<Title>Alums in the News: Copeland, Friedman, Bachore and Bell-McKoy</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <img width="150" height="150" src="https://umbc.edu/wp-content/uploads/2014/03/Bachore-150x150.jpg" alt="" style="max-width: 100%; height: auto;"><p><em>We are proud of our alums and their constant achievements. Recently, four of UMBC’s alumni, in particular, have made it in the news and we thought you should know!<br>
    </em><br>
    <img src="http://www.cmhsea.org/Pages_Content/Counties_content/Baltimore_City/Crest.jpg" alt="" width="166" height="201" style="max-width: 100%; height: auto;">Governor Martin O’Malley recently announced the appointment of 23 judges who will serve across Maryland. We’re proud to share that two of our UMBC alumnae, <strong>Judge Melissa Kaye Copeland ’91, sociology</strong>, and <strong>Judge Karen Friedman ’94, political science</strong>, were appointed to the Circuit Court for Baltimore.</p>
    <p>Copeland has served on the District Court for Baltimore City since 2012. Prior to that appointment, she worked as an Assistant State’s Attorney for Baltimore City. She spent her last seven years in that office serving as Deputy Division Chief of the Narcotics Division and received numerous awards from federal and local law enforcement agencies. Judge Copeland is a former secretary of the Monumental Bar Association, and she began her legal career as a law clerk for the Honorable Bonita Dancy of the Circuit Court for Baltimore City.</p>
    <p>Friedman has served on the District Court for Baltimore City since 2010. Prior to that appointment, she spent nine years as a Judge on the Orphans’ Court of Baltimore City and several years at Willner and Associates practicing family law. Judge Friedman has served on numerous boards and commissions, including the Baltimore City Bench/Bar Committee, the Simon Sobeloff Law Society, and the National Association of Women Judges. <a href="http://www.governor.maryland.gov/blog/?p=10010" rel="nofollow external" class="bo">Read the full announcement. </a></p>
    <img src="http://theloquitur.com/wp-content/uploads/2013/10/Bachore-300x225.jpg" alt="Photo via Cabrini College" width="253" height="190" style="max-width: 100%; height: auto;">Photo via Cabrini College
    <p><strong>Dr. Zelalem Bachore ’05, information systems management, M.S. ’07, information systems management, Ph.D. ’12, information systems management,</strong> recently began teaching at Cabrini College in Pennsylvania.</p>
    <p>Previously, Bachore worked with the Baltimore police and fire departments as a systems programmer and a faculty member of Virginia International University and ECPI University.</p>
    <p>She said this of her new position: “I love working at Cabrini,” Bachore said. “I love the fact that people actually acknowledge each other and take the time to greet each other. There is also a sense of serenity and peace.” <a href="http://theloquitur.com/long-journey-ethiopia-cabrini/?doing_wp_cron=1381930323.3494269847869873046875" rel="nofollow external" class="bo">Learn more about Bachore’s journey. </a></p>
    <p><a href="http://umbcalumni.files.wordpress.com/2013/03/bellmckoy.jpg" rel="nofollow external" class="bo"><img src="http://umbcalumni.files.wordpress.com/2013/03/bellmckoy.jpg" alt="bellmckoy" width="186" height="279" style="max-width: 100%; height: auto;"></a><a href="http://www.abc-md.org" rel="nofollow external" class="bo">Associated Black Charities</a> CEO <strong>Diane Bell-McKoy ’73, sociology</strong>, was recently named to the <em>Daily Record’s </em>2014 Influential Marylanders list.</p>
    <div>Influential Marylanders was created in 2006 to honor people who have each made truly significant impacts in their fields and continue to be leaders in Maryland. These individuals are selected by The Daily Record’s editors. Winners are selected in the following categories: Civic leadership, communications, education, finance, freestyle, health care, law, philanthropy, real estate and technology. – See more at: <a href="http://thedailyrecord.com/influential-marylanders/#sthash.EnsxdwQZ.dpuf">http://thedailyrecord.com/influential-marylanders/#sthash.EnsxdwQZ.dpuf</a>
    </div>
    <div>Influential Marylanders was created in 2006 to honor people who have each made truly significant impacts in their fields and continue to be leaders in Maryland. These individuals are selected by The Daily Record’s editors. Winners are selected in the following categories: Civic leadership, communications, education, finance, freestyle, health care, law, philanthropy, real estate and technology. – See more at: <a href="http://thedailyrecord.com/influential-marylanders/#sthash.EnsxdwQZ.dpuf">http://thedailyrecord.com/influential-marylanders/#sthash.EnsxdwQZ.dpuf</a>
    </div>
    <p>According to the website of the <em>Daily Record</em>, the list was created in 2006 to honor people who have each made truly significant impacts in their fields and continue to be leaders in Maryland. These individuals are selected by the <em>Daily Record’s</em> editors. Winners are selected in the following categories: Civic leadership, communications, education, finance, freestyle, health care, law, philanthropy, real estate and technology.</p>
    <p>The honorees were recognized at an event on March 27, 2014, at the Grand Lodge in Cockeysville, MD. <a href="http://thedailyrecord.com/influential-marylanders/" rel="nofollow external" class="bo">Learn more at the <em>Daily Record’s</em> website. </a></p>
    
    <h2><a href="http://alumni.umbc.edu/s/1325/1col_social.aspx?sid=1325&amp;gid=1&amp;pgid=467&amp;cid=1124&amp;mid=30554" rel="nofollow external" class="bo">Have you done something great lately?<br>
    Tell us about it in a class note! </a></h2>
    </div>
]]>
</Body>
<Summary>We are proud of our alums and their constant achievements. Recently, four of UMBC’s alumni, in particular, have made it in the news and we thought you should know!    Governor Martin O’Malley...</Summary>
<Website>https://umbc.edu/stories/alums-in-the-news-copeland-friedman-bachore-and-bell-mckoy/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/122713/guest@my.umbc.edu/5d487472e5036c2fdd3c34b3724641fc/api/pixel</TrackingUrl>
<Tag>alumni</Tag>
<Tag>cabrini-college</Tag>
<Tag>circuit-court-for-baltimore-city</Tag>
<Tag>diane-bell-mckoy</Tag>
<Tag>governor-martin-omalley</Tag>
<Tag>influential-marylanders</Tag>
<Tag>information-systems-management</Tag>
<Tag>karen-friedman</Tag>
<Tag>melissa-kaye-copeland</Tag>
<Tag>political-science</Tag>
<Tag>sociology</Tag>
<Tag>the-daily-record</Tag>
<Tag>zelalem-bachore</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>Mon, 31 Mar 2014 13:02:47 -0400</PostedAt>
</NewsItem>

</News>
