<?xml version="1.0"?>
<News hasArchived="true" page="8437" pageCount="10775" pageSize="10" timestamp="Fri, 28 Aug 2026 08:52:44 -0400" url="https://my3.my.umbc.edu/posts.xml?mode=activity&amp;page=8437">
<NewsItem contentIssues="true" id="34600" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34600">
<Title>The Move to bbPress</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>The Forums on CSS-Tricks started life as <a href="https://www.phpbb.com/" rel="nofollow external" class="bo">phpBB</a> sometime in 2008. There is even an <a href="http://css-tricks.com/video-screencasts/48-skinning-phpbb/" rel="nofollow external" class="bo">ancient video</a> of how to apply a basic skin. Sometime in 2010 I moved them to <a href="http://vanillaforums.org/" rel="nofollow external" class="bo">Vanilla Forums</a> in a response to heavy spam and the general unwieldy nature of phpBB. Now in 2013, the forums have been moved yet again, this time to <a href="http://bbpress.org/" rel="nofollow external" class="bo">bbPress</a>.</p>
    <p></p>
    <p>This move was inspired by a few things.</p>
    <ul>
    <li>Heavy spam again, with nowhere to turn to fight it. One plan was to force email verification, but that setting had a bug where emails would never get verified and bug users forever. I could never find a fix.</li>
    <li>I didn't love the theming. It was hard for me to figure out what stuff was in what files, then when I did figure it out, you had to copy that entire file over to your theme and customize it there. That made it safe to upgrade, but also meant that upgrading didn't do anything because you are overriding any new changes.</li>
    <li>The Vanilla community is fairly small and I didn't find it particularly helpful. I'm sure they are nice folks, but I could never seem to get the help I needed.</li>
    <li>Every other part of this site is powered by WordPress, so bringing it all under one roof was mega appealing. bbPress is just a plugin for WordPress now, meaning an account on CSS-Tricks works for the Forums, The Lodge, and for commenting on the blog. Not to mention spam blocking via Akismet and custom controls (we were getting terrible "Kitchen" related spam, and now I just mark as Pending any new thread that has that word in it.)</li>
    </ul>
    <h3>The Conversion Process</h3>
    <p>bbPress ships default with an import tool. It's in the admin under Tools &gt; Forums &gt; Import Forums once the plugin is activated. </p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/importer.png" alt="" style="max-width: 100%; height: auto;">
    <p>It specifically works with Vanilla as well as several other popular forum software products. All I did was give it the information it needed to connect to the database, check that I wanted to import users as well, and let it run. </p>
    <p>It moves everything into your normal WordPress database. There were over 100,000 posts in there, and it moved them all in about 4-5 hours. Normally database operations are pretty fast, but it makes sense that it takes this long in this case. It specifically only moves a little bit at a time and waits in between requests. This is a live site after all, and best not to hammer it. I did take down the Vanilla forums while this was going on, so no new posts would be made that would be lost. It did hang a few times during the process, but luckily the converter is smart. It saves its progress along the way and when you restart it, it restarts from where it left off.</p>
    <h3>The Transition</h3>
    <p>Categories moved over to new "Forums" perfectly. The forums were largely ready to rock as soon as the conversion was done. </p>
    <p>I was ready to accept that old forums URL's would just be broken. Kind of a bummer, but not too tragic as it wasn't ultra-common to link to threads out in the wild and Google would catch up fairly quickly. However that didn't need to happen!</p>
    <p>The old URL's were like:</p>
    <pre><code><a href="http://css-tricks.com/forums/discussion/23936/opinions-on-css-frameworks">http://css-tricks.com/forums/discussion/23936/opinions-on-css-frameworks</a></code></pre>
    <p>And the new URL's:</p>
    <pre><code><a href="http://css-tricks.com/forums/topic/opinions-on-css-frameworks/">http://css-tricks.com/forums/topic/opinions-on-css-frameworks/</a></code></pre>
    <p>That was close enough to RegEx, and <a href="https://twitter.com/_MattDolan/status/360044190618497024" rel="nofollow external" class="bo">Matt Dolan had the answer</a> for me:</p>
    <pre><code>RewriteRule ^forums/discussion/[0-9]+/(.+)/?$ /forums/topic/$1/ [R=301,L]</code></pre>
    <hr>
    <p>Another concern was user accounts. Any user who had a Lodge account (i.e. anyone who backed me on Kickstarter or had since signed up) who also had a forums account ran the risk of having the same username on WordPress as they were using on Vanilla. My own account had the same problem. </p>
    <p>Fortunately bbPress import is smart about this and creates the new user under username "imported__OLD_USERNAME". Like so:</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/old-username.png" alt="" style="max-width: 100%; height: auto;">
    <p>If a user expresses any confusion on this, I can easily fix it. I simply delete the "imported_" user and choose to attribute all posts to the old user.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/delete-user.png" alt="" style="max-width: 100%; height: auto;">
    <p>There is <a href="http://wordpress.org/plugins/username-changer/" rel="nofollow external" class="bo">a plugin for changing usernames</a> too, if anyone ends up wanting to do that.</p>
    <hr>
    <p>Passwords were the final hiccup. Of course the passwords are encrypted, so there is no way to import them from one system to the other. I just put up a notice in the forums that let people know that if they had any trouble logging in to just reset their password and it was fine (and expected).</p>
    <h3>Using Markdown</h3>
    <p>Why use Markdown as the language for users to write comments, replies, and new threads? There are a bunch of reasons. On any system that allows users to write and post what they write, you'll at the very least need some auto-paragraphing. If people type a bunch of text then return-return, you'll want to display it as two paragraphs. WordPress has autop, but Markdown also does this. </p>
    <p>The more obvious advantage to Markdown is that it makes it easier to "just type" out a response. Italic/Emphasize something by *putting asterisks around it* or **bold** it. Links are just [link](url). Quotes are just paragraphs that start with &gt;. </p>
    <p>But what made it very important to me is the code escaping. People post a good amount of HTML in the comments and in the forums. They shouldn't have to go out and escape all that HTML just to post it (e.g. turn &lt; into &amp;lt;). Markdown auto-escapes code that you intentionally are specifying as code (e.g. it is within `backticks` or indented 4 spaces). That is extremely helpful.</p>
    <p>That combined with WordPress general safety stuff (e.g. stripping <code>&lt;script&gt;</code> tags) makes it a pretty nice system.</p>
    <p>I use the <a href="http://wordpress.org/plugins/wp-markdown/" rel="nofollow external" class="bo">WP-Markdown</a> plugin by <a href="http://stephenharris.info/" rel="nofollow external" class="bo">Stephen Harris</a> which works both in comments and in bbPress. I ended up finding a few bugs with my setup, so I got the help of <a href="http://zaowebdesign.com/" rel="nofollow external" class="bo">Justin Sainton</a> to get it working just right. At this second, there is one more little bug regarding lists in Markdown to sort out, but after that I can send anyone the patched version of WP-Markdown if they want it. Stephen is aware of the changes and thinking they might not be right for the public version.</p>
    <h3>The Aftermath</h3>
    <p>One of the big bugs after launch was a login issue where users would log in, change pages, and appear to be logged out (<a href="http://www.youtube.com/watch?v=AMALI4FmlUE&amp;feature=youtu.be" rel="nofollow external" class="bo">as demo'd here</a>). It seemed like a caching issue to me. I use W3 Total Cache for that, but I had that set to not cache anything in the forums or anything for any logged in user.</p>
    <p>So far, my best guess is that it's browser-level caching. I found this in the .htaccess:</p>
    <pre><code>ExpiresByType text/html A3600</code></pre>
    <p>...which is the content-type for the document when pages are served. So that would make sense the the browser was trying to hang onto that page. I removed it, but it looks like something that W3 Total Cache adds by default so it gets re-added when those settings are changed. I'll see if they have any thoughts on this.</p>
    <hr>
    <p>The very next day there was a bunch of "Kitchen" spam again, which was amazing to me. That tells me the spammers are very likely human beings, which also explains how they got through the CAPTCHA effortlessly.</p>
    <p>All I had to do though was Settings &gt; Discussion &gt; Comment Moderation and put those words in there and it has all but stopped.</p>
    <img src="http://cdn.css-tricks.com/wp-content/uploads/2013/08/kitchen.png" alt="" style="max-width: 100%; height: auto;">
    <h3>The Future</h3>
    <p>I have a variety of functionality stuff I'd like to add via Plugin, and am looking for someone who wants to take on any of these as a freelance job.</p>
    <ul>
    <li>Alteration to WP-Markdown to allow GitHub flavored Markdown.</li>
    <li>A plugin that allows the original poster of a thread to (or an admin) to mark a particular answer as "the answer". That reply would get a special class so it can be styled, and the thread itself when shown in the forum list will get a special class so it can be marked as "solved" there.</li>
    <li>An alteration to one of the "Mark as Read" plugins which allows you to 1) mark everything as read and 2) will auto-mark a thread as read when you open it.</li>
    <li>An alteration to the <a href="http://wordpress.org/plugins/feature-comments/" rel="nofollow external" class="bo">Feature Comments plugin</a> that makes it work with bbPress also.</li>
    <li>A plugin that will send a user an email notification when they are @replied in a reply.</li>
    <li>A plugin that will "Clean up users" - e.g. auto-delete users that have 1) no associated posts anywhere on site 2) haven't logged in in X time 3) have no gravatar. I have a lot of spam users this would clean up.</li>
    <li>A plugin that would allow any users to "Report this topic" - in case it is spam or inappropriate.</li>
    <li>Some kind of way to allow forum moderators to see the "Pending" queue of posts that require moderation and publish/delete/spam them.</li>
    <li>A "Nuke" plugin - When an admin sees a spam post, they can "Nuke" it which 1) deletes it 2) deletes everything else that user has posted. 3) deletes the user.</li>
    </ul>
    <hr>
    
    <p><small><a href="http://css-tricks.com/the-move-to-bbpress/" rel="nofollow external" class="bo">The Move to bbPress</a> is a post from <a href="http://css-tricks.com" rel="nofollow external" class="bo">CSS-Tricks</a></small></p>
    </div>
]]>
</Body>
<Summary>The Forums on CSS-Tricks started life as phpBB sometime in 2008. There is even an ancient video of how to apply a basic skin. Sometime in 2010 I moved them to Vanilla Forums in a response to heavy...</Summary>
<Website>http://css-tricks.com/the-move-to-bbpress/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34600/guest@my.umbc.edu/fc7aba1b7e29eef11f4e95a6c5c3e5c5/api/pixel</TrackingUrl>
<Tag>article</Tag>
<Tag>css</Tag>
<Tag>html</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>tricks</Tag>
<Group token="retired-583">Web Developer - Build Group</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/retired-583</GroupUrl>
<AvatarUrl>https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/original.jpg?1363101197</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xlarge.png?1363101197</AvatarUrl>
<AvatarUrl size="large">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/large.png?1363101197</AvatarUrl>
<AvatarUrl size="medium">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/medium.png?1363101197</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/small.png?1363101197</AvatarUrl>
<AvatarUrl size="xsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xsmall.png?1363101197</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/583/fc60f5d7abc2e080599bb6dc465db54d/xxsmall.png?1363101197</AvatarUrl>
<Sponsor>Web Developer - Build Group</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 23 Aug 2013 11:14:32 -0400</PostedAt>
<EditAt>Fri, 23 Aug 2013 11:14:32 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="34598" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34598">
<Title>The UMBC PROMISE/CGS/Grad Student Development GA Position: Information for Semi-finalists</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Earlier this week, we posted a position announcement for a Graduate Assistantship at UMBC. This post recaps that position announcement and outlines next steps for semi-finalists.</p>
    <p>————————————-</p>
    <p><strong>The original Announcement:</strong></p>
    <div>
    <p><em><strong>PROMISE Graduate Assistantship – Website, Media, and Database Management</strong></em></p>
    </div>
    <p>This graduate assistantship requires knowledge of computer concepts and programming languages.   The position requires design, trouble-shooting, and support for websites and databases.  Duties include database management.  The National Science Foundation’s (NSF) PROMISE: Maryland’s Alliance for Graduate Education and the Professoriate (AGEP) uses the Xcalibur Scribe Tracking System and Registry (TSR) as part of the national evaluation program, Survey Monkey, and software for webinars.  The position also requires extensive use of social media and includes website programming.  The GA in this position will have knowledge of webpage design using Hypertext Markup Languages (HTML), Cascade Style Sheets (CSS), Extensible Markup Language (XML), and Java; all are necessary for designing and maintaining the program’s website and blogs.</p>
    <p>The GA will also have a sense of project management to assist with events and long-term projects.  The following media are used for PROMISE:  WordPress, Google sites, Facebook, Twitter, and Blogspot.    The GA in this position should have background in the following topics: online communities, database implementation (SQL-based interface), project management, decision technology, information management, emerging technologies, system design, system performance, usability, and system architecture.</p>
    <p>This position will support several projects; the primary project will be the new Council of Graduate Schools Financial Literacy program: <a href="http://www.cgsnet.org/enhancing-student-financial-education" rel="nofollow external" class="bo">http://www.cgsnet.org/enhancing-student-financial-education</a>, and will be responsible for implementing the “Go Live” project: <a href="http://www.cgsnet.org/project-summary-university-maryland-baltimore-county" rel="nofollow external" class="bo">http://www.cgsnet.org/project-summary-university-maryland-baltimore county</a>. <strong> The applicant should have basic knowledge about  credit rankings and scores, </strong><strong>budgeting, and debt reduction. </strong></p>
    <p><strong> </strong></p>
    <p>Roles: The GA will work with the PROMISE team for the multi-campus AGEP <a href="http://promiseagep.wordpress.com/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/</a>, the Graduate Student Development unit in The Graduate School at UMBC, and UMBC’s campus-wide committee on financial literacy that includes a collaborative team of staff and students from Enrollment Management, the Graduate School, Financial Services, and The Office of Undergraduate Education.</p>
    <p><em>This is a 20 hour/week assistantship. It includes tuition remission, and student health insurance for the GA. Assistantship stipend rates: </em><a href="http://www.umbc.edu/gradschool/funding/minimum_stipend_levels.html" rel="nofollow external" class="bo">http://www.umbc.edu/gradschool/funding/minimum_stipend_levels.html</a></p>
    <p><em> </em></p>
    <p><strong><span>To Apply:</span></strong></p>
    <p>Send a cover letter and CV to Dr. Renetta Tull at <em><a href="mailto:rtull@umbc.edu" rel="nofollow external" class="bo">rtull@umbc.edu</a>,</em> with the subject “CGS GA Position.”</p>
    <p><strong>Additional criteria:</strong> The initial email <strong><span>must </span></strong>include links from websites that you have designed, and links to public social media sites that you manage, e.g., Linked In groups, Twitter, blogs. The links must be accompanied by a few sentences that describe your role, e.g., administrator, content provider, editor.</p>
    <p>This opportunity is only open to graduate students at UMBC.</p>
    <p>————————————————</p>
    <p><span><strong>NEW! UPDATE as of 11:50 PM, August 22, 2013</strong></span></p>
    <p><span><strong>DEADLINE: 3:00 PM, Friday, August 23, 2013.</strong></span></p>
    <p><em>Due to the <span>overwhelming</span> response to this announcement, <span><strong>we will stop taking applications at 3:00 PM, Friday, August 23, 2013</strong></span> so that we can take time to evaluate each applicant.  Applicants can begin to check their emails on Friday afternoon for notifications.  Interviews (for finalists only) will begin next week. </em><em>Thank you for your interest!</em></p>
    <p>————————————–</p>
    <h1><span><strong>NEXT STEPS:</strong></span></h1>
    <p><strong><em><span>Semi-finalists, please see steps a, b, and c below, and complete them by Monday, August 26, at 9:00 AM. </span></em></strong></p>
    <p>Finalists will be scheduled for interviews Tuesday and Wednesday, August 27-28.</p>
    <p>a) Produce a short (3 minutes maximum) promotional video that advertises the Funding Seminar to undergraduate and graduate students on Saturday, September 7: <a href="http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/</a>.</p>
    <p>b) Embed your video into the comment on the site, <a href="http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/</a> and convince people to rate it.  Include 2-3 tips about managing a budget (provide sources) within the comment that houses your video. (Note: People who receive fellowships will have to manage a budget. Consider the example of a stipend of $15,000/year.)</p>
    <p>c) Use social media or venues to encourage people to post information on fellowship opportunities in the comment section of the site,  <a href="http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/</a>.  Include sources for fellowships for international students. Find a way to ask people to give you credit for leading you to the site, e.g., #YourName. All Twitter and Facebook posts should also have the hashtag: #PROMISEagep and should steer people to follow @PROMISE_AGEP.</p>
    <h6>Related articles</h6>
    <ul>
    <li>
    <a href="http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/" rel="nofollow external" class="bo">Jobs, Fellowships, &amp; Grad School Funding! Saturday Breakfast &amp; Lunch Seminar: Sept. 7, 2013 @ UMBC</a> (promiseagep.wordpress.com)</li>
    </ul>
    <br>   </div>
]]>
</Body>
<Summary>Earlier this week, we posted a position announcement for a Graduate Assistantship at UMBC. This post recaps that position announcement and outlines next steps for semi-finalists.   ————————————-...</Summary>
<Website>http://promiseagep.wordpress.com/2013/08/23/the-umbc-promisecgsgrad-student-development-ga-position-information-for-semi-finalists/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34598/guest@my.umbc.edu/4b6c57c0624ffabad97cfc38c3f3d44b/api/pixel</TrackingUrl>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>development</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>jobs-and-funding</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>nsf</Tag>
<Tag>ph-d-completion</Tag>
<Tag>postdoc</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Tag>umbc</Tag>
<Tag>university-of-maryland-baltimore-county</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: Graduate Student Development</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 23 Aug 2013 11:11:44 -0400</PostedAt>
<EditAt>Fri, 23 Aug 2013 11:11:44 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="true" id="35868" important="false" status="posted" url="https://my3.my.umbc.edu/posts/35868">
<Title>The UMBC PROMISE/CGS/Grad Student Development GA Position: Information for Semi-finalists</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p>Earlier this week, we posted a position announcement for a Graduate Assistantship at UMBC. This post recaps that position announcement and outlines next steps for semi-finalists.</p>
    <p>————————————-</p>
    <p><strong>The original Announcement:</strong></p>
    <div>
    <p><em><strong>PROMISE Graduate Assistantship – Website, Media, and Database Management</strong></em></p>
    </div>
    <p>This graduate assistantship requires knowledge of computer concepts and programming languages.   The position requires design, trouble-shooting, and support for websites and databases.  Duties include database management.  The National Science Foundation’s (NSF) PROMISE: Maryland’s Alliance for Graduate Education and the Professoriate (AGEP) uses the Xcalibur Scribe Tracking System and Registry (TSR) as part of the national evaluation program, Survey Monkey, and software for webinars.  The position also requires extensive use of social media and includes website programming.  The GA in this position will have knowledge of webpage design using Hypertext Markup Languages (HTML), Cascade Style Sheets (CSS), Extensible Markup Language (XML), and Java; all are necessary for designing and maintaining the program’s website and blogs.</p>
    <p>The GA will also have a sense of project management to assist with events and long-term projects.  The following media are used for PROMISE:  WordPress, Google sites, Facebook, Twitter, and Blogspot.    The GA in this position should have background in the following topics: online communities, database implementation (SQL-based interface), project management, decision technology, information management, emerging technologies, system design, system performance, usability, and system architecture.</p>
    <p>This position will support several projects; the primary project will be the new Council of Graduate Schools Financial Literacy program: <a href="http://www.cgsnet.org/enhancing-student-financial-education" rel="nofollow external" class="bo">http://www.cgsnet.org/enhancing-student-financial-education</a>, and will be responsible for implementing the “Go Live” project: <a href="http://www.cgsnet.org/project-summary-university-maryland-baltimore-county" rel="nofollow external" class="bo">http://www.cgsnet.org/project-summary-university-maryland-baltimore county</a>. <strong> The applicant should have basic knowledge about  credit rankings and scores, </strong><strong>budgeting, and debt reduction. </strong></p>
    <p><strong> </strong></p>
    <p>Roles: The GA will work with the PROMISE team for the multi-campus AGEP <a href="http://promiseagep.wordpress.com/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/</a>, the Graduate Student Development unit in The Graduate School at UMBC, and UMBC’s campus-wide committee on financial literacy that includes a collaborative team of staff and students from Enrollment Management, the Graduate School, Financial Services, and The Office of Undergraduate Education.</p>
    <p><em>This is a 20 hour/week assistantship. It includes tuition remission, and student health insurance for the GA. Assistantship stipend rates: </em><a href="http://www.umbc.edu/gradschool/funding/minimum_stipend_levels.html" rel="nofollow external" class="bo">http://www.umbc.edu/gradschool/funding/minimum_stipend_levels.html</a></p>
    <p><em> </em></p>
    <p><strong><span>To Apply:</span></strong></p>
    <p>Send a cover letter and CV to Dr. Renetta Tull at <em><a href="mailto:rtull@umbc.edu" rel="nofollow external" class="bo">rtull@umbc.edu</a>,</em> with the subject “CGS GA Position.”</p>
    <p><strong>Additional criteria:</strong> The initial email <strong><span>must </span></strong>include links from websites that you have designed, and links to public social media sites that you manage, e.g., Linked In groups, Twitter, blogs. The links must be accompanied by a few sentences that describe your role, e.g., administrator, content provider, editor.</p>
    <p>This opportunity is only open to graduate students at UMBC.</p>
    <p>————————————————</p>
    <p><span><strong>NEW! UPDATE as of 11:50 PM, August 22, 2013</strong></span></p>
    <p><span><strong>DEADLINE: 3:00 PM, Friday, August 23, 2013.</strong></span></p>
    <p><em>Due to the <span>overwhelming</span> response to this announcement, <span><strong>we will stop taking applications at 3:00 PM, Friday, August 23, 2013</strong></span> so that we can take time to evaluate each applicant.  Applicants can begin to check their emails on Friday afternoon for notifications.  Interviews (for finalists only) will begin next week. </em><em>Thank you for your interest!</em></p>
    <p>————————————–</p>
    <h1><span><strong>NEXT STEPS:</strong></span></h1>
    <p><strong><em><span>Semi-finalists, please see steps a, b, and c below, and complete them by Monday, August 26, at 9:00 AM. </span></em></strong></p>
    <p>Finalists will be scheduled for interviews Tuesday and Wednesday, August 27-28.</p>
    <p>a) Produce a short (3 minutes maximum) promotional video that advertises the Funding Seminar to undergraduate and graduate students on Saturday, September 7: <a href="http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/</a>.</p>
    <p>b) Embed your video into the comment on the site, <a href="http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/</a> and convince people to rate it.  Include 2-3 tips about managing a budget (provide sources) within the comment that houses your video. (Note: People who receive fellowships will have to manage a budget. Consider the example of a stipend of $15,000/year.)</p>
    <p>c) Use social media or venues to encourage people to post information on fellowship opportunities in the comment section of the site,  <a href="http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/" rel="nofollow external" class="bo">http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/</a>.  Include sources for fellowships for international students. Find a way to ask people to give you credit for leading you to the site, e.g., #YourName. All Twitter and Facebook posts should also have the hashtag: #PROMISEagep and should steer people to follow @PROMISE_AGEP.</p>
    <h6>Related articles</h6>
    <ul>
    <li>
    <a href="http://promiseagep.wordpress.com/2013/08/21/jobs-fellowships-grad-school-funding-saturday-breakfast-lunch-seminar-sept-7-2013-umbc/" rel="nofollow external" class="bo">Jobs, Fellowships, &amp; Grad School Funding! Saturday Breakfast &amp; Lunch Seminar: Sept. 7, 2013 @ UMBC</a> (promiseagep.wordpress.com)</li>
    </ul>
    <br>   </div>
]]>
</Body>
<Summary>Earlier this week, we posted a position announcement for a Graduate Assistantship at UMBC. This post recaps that position announcement and outlines next steps for semi-finalists.   ————————————-...</Summary>
<Website>https://promiseagep.wordpress.com/2013/08/23/the-umbc-promisecgsgrad-student-development-ga-position-information-for-semi-finalists/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/35868/guest@my.umbc.edu/3af0bd11ad273414c6d87e7d76296e53/api/pixel</TrackingUrl>
<Tag>advising</Tag>
<Tag>agep</Tag>
<Tag>development</Tag>
<Tag>gradschool</Tag>
<Tag>gradstudents</Tag>
<Tag>jobs-and-funding</Tag>
<Tag>learning</Tag>
<Tag>maryland</Tag>
<Tag>nsf</Tag>
<Tag>ph-d-completion</Tag>
<Tag>postdoc</Tag>
<Tag>professor</Tag>
<Tag>professoriate</Tag>
<Tag>promise</Tag>
<Tag>support</Tag>
<Tag>teaching</Tag>
<Tag>umbc</Tag>
<Tag>university-of-maryland-baltimore-county</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: Graduate Student Development</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 23 Aug 2013 11:11:44 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110051" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110051">
<Title>Erle Ellis, GES, on Smithsonian Magazine blog</Title>
<Body>
<![CDATA[
    <div class="html-content">Erle Ellis, associate professor of geography and environmental systems, appeared on a Smithsonian Magazine blog this week. The post “Watch How America’s Lands Changes from Forests to Fields” shares maps that Ellis created to depict how land use in the U.S. has evolved over the past 300 years. Ellis maps anthropogenic biomes—”a matrix of human-altered croplands, pastures, towns and cities…’anthromes’ for short” to help readers visualize humanity’s effect on the landscape. This semester, Fall 2013, Ellis is a visiting associate professor of landscape architecture at the Harvard University Graduate School of Design.</div>
]]>
</Body>
<Summary>Erle Ellis, associate professor of geography and environmental systems, appeared on a Smithsonian Magazine blog this week. The post “Watch How America’s Lands Changes from Forests to Fields”...</Summary>
<Website>https://news.umbc.edu/erle-ellis-ges-on-smithsonian-magazine-blog/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110051/guest@my.umbc.edu/e09cb9f3b55e6e37e56c10019ce4132e/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>ges</Tag>
<Tag>policy-and-society</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 23 Aug 2013 11:04:41 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34592" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34592">
<Title>Q&amp;A: Beyond Windows XP</Title>
<Body>
<![CDATA[
    <div class="html-content">Upgrading from Windows XP before security support ends, and ridding iPhoto and iTunes of duplicate files.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F23%2Ftechnology%2Fpersonaltech%2Fbeyond-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Beyond+Windows+XP" 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%2F2013%2F08%2F23%2Ftechnology%2Fpersonaltech%2Fbeyond-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Beyond+Windows+XP" 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%2F2013%2F08%2F23%2Ftechnology%2Fpersonaltech%2Fbeyond-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Beyond+Windows+XP" 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%2F2013%2F08%2F23%2Ftechnology%2Fpersonaltech%2Fbeyond-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Beyond+Windows+XP" 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%2F2013%2F08%2F23%2Ftechnology%2Fpersonaltech%2Fbeyond-windows-xp.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Q%26A%3A+Beyond+Windows+XP" 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/174726124648/u/0/f/640387/c/34625/s/30508402/sc/4/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726124648/u/0/f/640387/c/34625/s/30508402/sc/4/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/174726124648/u/0/f/640387/c/34625/s/30508402/sc/4/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726124648/u/0/f/640387/c/34625/s/30508402/sc/4/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/174726124648/u/0/f/640387/c/34625/s/30508402/sc/4/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726124648/u/0/f/640387/c/34625/s/30508402/sc/4/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/174726124648/u/0/f/640387/c/34625/s/30508402/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/174726124648/u/0/f/640387/c/34625/s/30508402/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Upgrading from Windows XP before security support ends, and ridding iPhoto and iTunes of duplicate files.      </Summary>
<Website>http://www.nytimes.com/2013/08/23/technology/personaltech/beyond-windows-xp.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34592/guest@my.umbc.edu/24c72aab84ac7af6e3e762f875a5f6b2/api/pixel</TrackingUrl>
<Tag>apple-inc-aapl-nasdaq</Tag>
<Tag>computers-and-the-internet</Tag>
<Tag>itunes</Tag>
<Tag>microsoft-corporation-msft-nasdaq</Tag>
<Tag>new</Tag>
<Tag>technology</Tag>
<Tag>windows-operating-system</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, 23 Aug 2013 10:52:07 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="false" id="110052" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110052">
<Title>Dennis Coates, Economics, on Press Box Online and SB Nation</Title>
<Body>
<![CDATA[
    <div class="html-content">As Baltimore anticipates the start of the 2013 Grand Prix, a well-known 2011 economic impact analysis by UMBC economics professor Dennis Coates is again making news. The Press Box Online article “What Is Best Way To Measure Grand Prix’s Economic Impact?” notes that race organizers believe the 2012 Grand Prix generated $42.3 million in economic impact for Baltimore and the 2011 event generated $48 million. Coates, however, contested the 2011 figure in a assessment following that year’s Grand Prix, which indicated the impact was approximately $20 million less than the race organizers claimed. The article notes, “Coates’ argument centered on …</div>
]]>
</Body>
<Summary>As Baltimore anticipates the start of the 2013 Grand Prix, a well-known 2011 economic impact analysis by UMBC economics professor Dennis Coates is again making news. The Press Box Online article...</Summary>
<Website>https://news.umbc.edu/dennis-coates-economics-on-press-box-online-and-sb-nation/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110052/guest@my.umbc.edu/755b2aebba5e997485c2773045402c45/api/pixel</TrackingUrl>
<Tag>cahss</Tag>
<Tag>economics</Tag>
<Tag>policy-and-society</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 23 Aug 2013 10:46:09 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34590" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34590">
<Title>Construction on the Quad to protect water, and green spaces</Title>
<Tagline>Ongoing Quad South Drainage &amp; Accessibility Improvements</Tagline>
<Body>
<![CDATA[
    <div class="html-content">This project that will transform an existing service drive between the RAC, the Sondhiem building, and the Quad into a pedestrian-friendly plaza and walkway.<br><br><p>Originally, the drive was intended for vehicles servicing the 
    on-campus pool and provided access to chemical storage and treatment 
    tanks. However, with the addition of the new campus center, the Commons, many began using the area as a through-way between buildings and this new 
    project responds to the need for a safer, more attractive pedestrian 
    thoroughfare that allows water to filter into the ground rather than puddling.</p>
    <p>The design also extends an existing allee
     of trees with additional tree plantings. This project is on track for 
    completion in the spring of 2013.<img src="http://www.ftla.com/site/wp-content/uploads/2012/08/UMBC-South-Quad-674x265.jpg" style="max-width: 100%; height: auto;"></p>
    <p>FTLA’s design will add walls, benches, a walkway, new pavement and 
    plantings to the access road, while incorporating new drainage patterns 
    to add a bioretention feature. <br></p>
    <p>The bioretention feature is important to reduce stormwater runoff from entering streams on campus, and eventually the bay. With paved surfaces dominating the landscape in many areas, sediment, nutrients, and pollution gush into water ways during rain events, causing erosion and disrupting the water. With sediment causing murky water and blocking sunlight, and with nutrients causing alage blooms this is very dangerous to aquatic life. UMBC's pond, No Mow Zones, and protected natural spaces as well as pervious pavers and rain gardens also help to address this problem.</p>
    <p>In addition, our new LEED construction protects water with a vegetated green roof on Patapsco Hall soaking up rain and a rainwater harvesting system on the roof of the new Performing Arts and Humanities Center capturing and reusing rainwater to irrigate the surrounding landscaping.<br></p>
    <p><br></p>
    </div>
]]>
</Body>
<Summary>This project that will transform an existing service drive between the RAC, the Sondhiem building, and the Quad into a pedestrian-friendly plaza and walkway.   Originally, the drive was intended...</Summary>
<Website>http://www.ftla.com/projects/umbc-retriever-activity-center/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34590/guest@my.umbc.edu/c592bbcfce40fd03a6631b86de6ae27a/api/pixel</TrackingUrl>
<Group token="sustainability">Sustainability Matters at UMBC</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/sustainability</GroupUrl>
<AvatarUrl>https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xsmall.png?1586269437</AvatarUrl>
<AvatarUrl size="original">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/original.png?1586269437</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xxlarge.png?1586269437</AvatarUrl>
<AvatarUrl size="xlarge">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xlarge.png?1586269437</AvatarUrl>
<AvatarUrl size="large">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/large.png?1586269437</AvatarUrl>
<AvatarUrl size="medium">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/medium.png?1586269437</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/small.png?1586269437</AvatarUrl>
<AvatarUrl size="xsmall">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xsmall.png?1586269437</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets3-my.umbc.edu/system/shared/avatars/groups/000/000/086/91091ac32f525d88daa6d6b721420ac1/xxsmall.png?1586269437</AvatarUrl>
<Sponsor>UMBC Sustainability</Sponsor>
<ThumbnailUrl size="xxlarge">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/590/57594e302ddb74da1006e4385a85cd49/xxlarge.jpg?1377267225</ThumbnailUrl>
<ThumbnailUrl size="xlarge">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/590/57594e302ddb74da1006e4385a85cd49/xlarge.jpg?1377267225</ThumbnailUrl>
<ThumbnailUrl size="large">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/590/57594e302ddb74da1006e4385a85cd49/large.jpg?1377267225</ThumbnailUrl>
<ThumbnailUrl size="medium">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/590/57594e302ddb74da1006e4385a85cd49/medium.jpg?1377267225</ThumbnailUrl>
<ThumbnailUrl size="small">https://assets4-my.umbc.edu/system/shared/thumbnails/news/000/034/590/57594e302ddb74da1006e4385a85cd49/small.jpg?1377267225</ThumbnailUrl>
<ThumbnailUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/thumbnails/news/000/034/590/57594e302ddb74da1006e4385a85cd49/xsmall.jpg?1377267225</ThumbnailUrl>
<ThumbnailUrl size="xxsmall">https://assets1-my.umbc.edu/system/shared/thumbnails/news/000/034/590/57594e302ddb74da1006e4385a85cd49/xxsmall.jpg?1377267225</ThumbnailUrl>
<PawCount>28</PawCount>
<CommentCount>5</CommentCount>
<CommentsAllowed>true</CommentsAllowed>
<PostedAt>Fri, 23 Aug 2013 10:16:21 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34593" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34593">
<Title>Free download: 10 photorealistic backdrops</Title>
<Body>
<![CDATA[
    <div class="html-content">
    <p><img alt="thumbnail" src="http://netdna.webdesignerdepot.com/uploads/2013/08/thumbnail5.jpg" width="200" height="160" style="max-width: 100%; height: auto;">Mocking up a product online can be difficult. Leave it floating in space and it looks wrong. But then, Photoshop it onto a desk or a work surface and you risk overpowering the product; or worse, making the image appear deceptive.</p> <p>Designers with lightbox facilities in their office have nothing to worry about, but for anyone else a good backdrop that complements a product is priceless.</p> <p>Happily we have this set of lovely backgrounds, with smooth gradients and lovely colors, courtesy of Romanian designer Raul Taciu and his site <a href="http://graphicburger.com/" rel="nofollow external" class="bo">GraphicBurger.com.</a> </p> <p>Each image is available in high-resolution, 2800px by 2000px. The blurred forms ideal for shallow focus photographs.</p> <p>The backgrounds are free for personal and commercial use. Download information after the preview below…</p> <p><img src="http://netdna.webdesignerdepot.com/uploads/2013/08/Preview.jpg" width="650" alt="Free download: 10 photorealistic backdrops" style="max-width: 100%; height: auto;"></p> <p><em><strong>Have you used these freebies in a design? Let us know in the comments.</strong></em></p> <div>
    <div> <a href="/widget/pay-tweet.php?refID=wdd_backdrops&amp;code=bae7d3355a2ae1553ec4ba9d1973dcf4&amp;post_id=57155&amp;msg=Free+download%3A+10+photorealistic+backdrops+http%3A%2F%2Fbit.ly%2F1ayJv5g" rel="nofollow external" class="bo">Pay with a Tweet</a> </div> <div> <a rel="nofollow external" class="bo">Download now</a> </div> <div> <p>Please enter your email address below and click the download button. The download link will be sent to you by email, or if you have already subscribed, the download will begin immediately.</p>       <div>I agree to receive exclusive deals from <a href="http://www.MightyDeals.com" rel="nofollow external" class="bo"><span>MightyDeals.com</span></a> and monthly/weekly newsletters from <a href="http://www.WebdesignerDepot.com" rel="nofollow external" class="bo"><span>WebdesignerDepot.com</span></a>. Unsubscribe at any time. Your email will not be sold/rented.</div>   <div>         </div>  <div><img src="http://forms.aweber.com/form/displays.htm?id=jJwczBwMnIwMrA==" alt="" style="max-width: 100%; height: auto;"></div>  </div>   </div> <p><br><br> </p>
    <table width="100%"> <tbody>
    <tr> <td> <a href="http://www.mightydeals.com/deal/viral-squeeze-wordpress-plugin.html?ref=inwidget" rel="nofollow external" class="bo"><strong>Viral Squeeze: WordPress Plugin to Build Viral Lead Pages – only $17!</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="Free download: 10 photorealistic backdrops" style="max-width: 100%; height: auto;"><br> </a> </td> </tr> </tbody>
    </table> <p><br> </p> <a href="http://www.webdesignerdepot.com/2013/08/free-download-10-photorealistic-backdrops/" 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%2F2013%2F08%2Ffree-download-10-photorealistic-backdrops%2F&amp;t=Free+download%3A+10+photorealistic+backdrops" 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%2F2013%2F08%2Ffree-download-10-photorealistic-backdrops%2F&amp;t=Free+download%3A+10+photorealistic+backdrops" 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%2F2013%2F08%2Ffree-download-10-photorealistic-backdrops%2F&amp;t=Free+download%3A+10+photorealistic+backdrops" 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%2F2013%2F08%2Ffree-download-10-photorealistic-backdrops%2F&amp;t=Free+download%3A+10+photorealistic+backdrops" 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%2F2013%2F08%2Ffree-download-10-photorealistic-backdrops%2F&amp;t=Free+download%3A+10+photorealistic+backdrops" 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/173608145918/u/49/f/661066/c/35285/s/305016ec/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608145918/u/49/f/661066/c/35285/s/305016ec/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Mocking up a product online can be difficult. Leave it floating in space and it looks wrong. But then, Photoshop it onto a desk or a work surface and you risk overpowering the product; or worse,...</Summary>
<Website>http://rss.feedsportal.com/c/35285/f/661066/s/305016ec/sc/4/l/0L0Swebdesignerdepot0N0C20A130C0A80Cfree0Edownload0E10A0Ephotorealistic0Ebackdrops0C/story01.htm</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34593/guest@my.umbc.edu/6ffc2d325cf08dbfa4b426769fcc49bd/api/pixel</TrackingUrl>
<Tag>art</Tag>
<Tag>css</Tag>
<Tag>design</Tag>
<Tag>development</Tag>
<Tag>free-backgrounds</Tag>
<Tag>free-photoshop-files</Tag>
<Tag>freebies</Tag>
<Tag>html</Tag>
<Tag>html5</Tag>
<Tag>illustrator</Tag>
<Tag>javascript</Tag>
<Tag>mysql</Tag>
<Tag>oracle</Tag>
<Tag>photoreal-backgrounds</Tag>
<Tag>photoshop</Tag>
<Tag>photoshop-resources</Tag>
<Tag>php</Tag>
<Tag>sql</Tag>
<Tag>web-design-freebies</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, 23 Aug 2013 10:15:27 -0400</PostedAt>
<EditAt>Fri, 23 Aug 2013 10:15:27 -0400</EditAt>
</NewsItem>

<NewsItem contentIssues="false" id="110053" important="false" status="posted" url="https://my3.my.umbc.edu/posts/110053">
<Title>Donald Norris, Public Policy, in the Daily Record</Title>
<Body>
<![CDATA[
    <div class="html-content">Donald F. Norris, professor and chair of public policy at UMBC, offers insight in The Daily Record this week on a Maryland campaign finance law that prohibits statewide elected officials from soliciting or accepting campaign contributions when the legislature is in session. Although the law is intended to prohibit vote buying and the influence of policy through campaign finance, it also has the potential to create unfairness, where those running for office who are not currently statewide elected officials can raise funds while others must pause their fundraising efforts. Norris tells The Daily Record, “It’s always been unfair. The difference …</div>
]]>
</Body>
<Summary>Donald F. Norris, professor and chair of public policy at UMBC, offers insight in The Daily Record this week on a Maryland campaign finance law that prohibits statewide elected officials from...</Summary>
<Website>https://news.umbc.edu/donald-norris-public-policy-in-the-daily-record-3/</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/110053/guest@my.umbc.edu/a43f80ca4706cb0b9413119d02fb8932/api/pixel</TrackingUrl>
<Tag>policy-and-society</Tag>
<Group token="umbc-news">UMBC News</Group>
<GroupUrl>https://my3.my.umbc.edu/groups/umbc-news</GroupUrl>
<AvatarUrl>https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="original">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/original.png?1632921809</AvatarUrl>
<AvatarUrl size="xxlarge">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="xlarge">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xlarge.png?1632921809</AvatarUrl>
<AvatarUrl size="large">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/large.png?1632921809</AvatarUrl>
<AvatarUrl size="medium">https://assets1-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/medium.png?1632921809</AvatarUrl>
<AvatarUrl size="small">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/small.png?1632921809</AvatarUrl>
<AvatarUrl size="xsmall">https://assets2-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xsmall.png?1632921809</AvatarUrl>
<AvatarUrl size="xxsmall">https://assets4-my.umbc.edu/system/shared/avatars/groups/000/001/944/2c79aeea85b1abb37f8cf9fbcdc382b0/xxsmall.png?1632921809</AvatarUrl>
<Sponsor>UMBC News</Sponsor>
<PawCount>0</PawCount>
<CommentCount>0</CommentCount>
<CommentsAllowed>false</CommentsAllowed>
<PostedAt>Fri, 23 Aug 2013 10:13:35 -0400</PostedAt>
</NewsItem>

<NewsItem contentIssues="true" id="34588" important="false" status="posted" url="https://my3.my.umbc.edu/posts/34588">
<Title>Ballmer Exit Brings Microsoft a Chance for Reinvention</Title>
<Body>
<![CDATA[
    <div class="html-content">Steven A. Ballmer’s departure paves the way for a generational change at Microsoft and gives it an opportunity to adapt to a world dominated by technologies that have eluded its influence.<br><div><table border="0"><tbody><tr><td>
    <a href="http://share.feedsportal.com/share/twitter/?u=http%3A%2F%2Fwww.nytimes.com%2F2013%2F08%2F24%2Ftechnology%2Fballmer-announces-retirement-from-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ballmer+Exit+Brings+Microsoft+a+Chance+for+Reinvention" 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%2F2013%2F08%2F24%2Ftechnology%2Fballmer-announces-retirement-from-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ballmer+Exit+Brings+Microsoft+a+Chance+for+Reinvention" 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%2F2013%2F08%2F24%2Ftechnology%2Fballmer-announces-retirement-from-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ballmer+Exit+Brings+Microsoft+a+Chance+for+Reinvention" 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%2F2013%2F08%2F24%2Ftechnology%2Fballmer-announces-retirement-from-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ballmer+Exit+Brings+Microsoft+a+Chance+for+Reinvention" 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%2F2013%2F08%2F24%2Ftechnology%2Fballmer-announces-retirement-from-microsoft.html%3Fpartner%3Drss%26emc%3Drss&amp;t=Ballmer+Exit+Brings+Microsoft+a+Chance+for+Reinvention" 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/173608146921/u/0/f/640387/c/34625/s/304f59db/sc/21/rc/1/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608146921/u/0/f/640387/c/34625/s/304f59db/sc/21/rc/1/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608146921/u/0/f/640387/c/34625/s/304f59db/sc/21/rc/2/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608146921/u/0/f/640387/c/34625/s/304f59db/sc/21/rc/2/rc.img" style="max-width: 100%; height: auto;"></a><br><a href="http://da.feedsportal.com/r/173608146921/u/0/f/640387/c/34625/s/304f59db/sc/21/rc/3/rc.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608146921/u/0/f/640387/c/34625/s/304f59db/sc/21/rc/3/rc.img" style="max-width: 100%; height: auto;"></a><br><br><a href="http://da.feedsportal.com/r/173608146921/u/0/f/640387/c/34625/s/304f59db/a2.htm" rel="nofollow external" class="bo"><img src="http://da.feedsportal.com/r/173608146921/u/0/f/640387/c/34625/s/304f59db/a2.img" style="max-width: 100%; height: auto;"></a>
    </div>
]]>
</Body>
<Summary>Steven A. Ballmer’s departure paves the way for a generational change at Microsoft and gives it an opportunity to adapt to a world dominated by technologies that have eluded its influence.      </Summary>
<Website>http://www.nytimes.com/2013/08/24/technology/ballmer-announces-retirement-from-microsoft.html?partner=rss&amp;emc=rss</Website>
<TrackingUrl>https://my3.my.umbc.edu/api/v0/pixel/news/34588/guest@my.umbc.edu/62b62a1cc4c1332a7d22555d700b1753/api/pixel</TrackingUrl>
<Tag>ballmer-steven-a</Tag>
<Tag>microsoft-corporation</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, 23 Aug 2013 09:21:59 -0400</PostedAt>
<EditAt>Fri, 23 Aug 2013 20:57:35 -0400</EditAt>
</NewsItem>

</News>
